Function Reference
StringLen
Returns the number of characters in a string.
Parameters
| string |
The string to evaluate. |
Return Value
Returns the length of the string.
Remarks
A numeric expression is automatically evaluated and converted to a string.
Related
StringInStr, StringLeft, StringLower, StringMid, StringRight, StringTrimLeft, StringTrimRight, StringUpper, StringCompare, StringReplace, StringSplit
Example
Local $len = StringLen("How long am I?")
MsgBox(0, "String length is:", $len)