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
|