Retrieves the count of how many characters are in a string.
Length := StrLen(String)
The string to be measured.
This function returns the length of the string.
InputVar := "The Quick Brown Fox Jumps Over the Lazy Dog" MsgBox % "The length of InputVar is " . StrLen(InputVar) ; Result: 43
Deprecated: This command is not recommended for use in new scripts. Use the StrLen function instead.
StringLen, OutputVar, InputVar
The name of the variable in which to store the length.
The name of the variable whose contents will be measured. Do not enclose the name in percent signs unless you want the contents of the variable to be used as the name.
StringLen, Length, InputVar MsgBox, The length of InputVar is %Length%.
If String or InputVar is a variable to which ClipboardAll was previously assigned, StrLen() or StringLen will report its total size.
IfInString, StringGetPos, StringMid, StringTrimLeft, StringTrimRight, StringLeft, StringRight, StringLower, StringUpper, StringReplace