LEN
The LEN function returns the character length of the supplied expression.
COMMAND SYNTAX
LEN(expression)
SYNTAX ELEMENTS
expression can evaluate to any type and the function will convert it to a string automatically.
EXAMPLES
Lengths = ""
FOR I = 1 TO 50
Lengths = LEN(Values)
NEXT I
jBC
|