LEN

LEN

This function returns the length of a string.
Format
LEN(A$)
Parameters
A$
= the target string from which to determine the length.
Returns
The length of the string.
Example
This example identifies the length of a string. Hello World is 11 characters, as follows:
10 LET A$="Hello World" 20 PRINT LEN(A$) RUN 11
Comments
None