OutputVar := Mfunc.StringLen(Input)
Retrieves the count of how many characters are in a string.
Input
The name of the variable whose contents will be measured.
Can be var or any object that inherits from MfObject.
Returns the length of the string as a var containing integer.
Wrapper for AutoHotkey Docs - StringLen.
Static method.
If Input is a variable to which ClipboardAll was previously assigned, StringLen will report its total size.
If Input is an object derived from MfObject. then the the return value will be the length of the objects ToString() result.
See Also:AutoHotkey Docs - StringLen.
InputVar := "The Quick Brown Fox Jumps Over the Lazy Dog"
length := Mfunc.StringLen(InputVar) ; length will have a value of 43
MsgBox, The length of InputVar is %length%.
MfsInputvar := new MfString(InputVar)
length := Mfunc.StringLen(MfsInputvar) ; length will have a value of 43
MsgBox, The length of InputVar is %length%.
iInputVar := 100
length := Mfunc.StringLen(iInputVar) ; length will have a value of 3
MsgBox, The length of InputVar is %length%.
mfiInputVar := new MfInteger(iInputVar)
length := Mfunc.StringLen(mfiInputVar) ; length will have a value of 3
MsgBox, The length of InputVar is %length%.