%stringGetSize()

Aliases%stringGetSize( ), %stringGetlength( )
Parametersstring @value

    Returns the length of the given string, that is it counts the number of
characters in the string and returns the count.

Example:

@text = "This is some sample text!"
echo Size: %stringGetSize( @text )

Output:

Size: 25