To return the number of characters in x$.
LEN(x$)
Nonprinting characters and blanks are counted.
x$ is any string expression.
10 X$="PORTLAND, OREGON" 20 PRINT LEN(X$) RUN 16
Note that the comma and space are included in the character count of 16.