LEN returns the length of a string.
LEN (string)
where string is a string expression.
10 A$ = "ABCDEFC” 20 PRINT LEN (A$)
prints 7.
The string may be an expression.
A null string has zero length.