StrLen

number StrLen(string aString)

Returns the length of the specified string.

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

See Also: StrEnd, StrCat, StrCmp, StrCpy