StringLen() Function
- Last UpdatedNov 23, 2018
- 1 minute read
Returns the length of a specified string, including non-visible characters.
Syntax
result = StringLen (string)
Parameters
string
A literal string, message tagname, or string expression.
Example(s)
StringLen("Twelve percent") returns 14.
StringLen("12%") returns 3.
StringLen("The end." + StringChar(13)) returns 9.