StrLen (Kernel)

StrLen(text)

Returns the length of the specified string.

Parameters:text (string) – The string.
Returns:The length of the string.

Example:

(var aString[40], strPtr)
StrCpy(aString "Hello World")
(if( < StrLen(aString) 100 )
        Print("The string is less than 100 characters")
)