Len

From BR Wiki
Revision as of 10:15, 17 January 2012 by Mikhail.zheleznov (talk | contribs) (moved Len to LEN)
Jump to navigation Jump to search

The Len internal function returns the number of characters in variable A$.

Comments and Examples

00010 LET A$ = "red"
00020 LET B$ = "white "
00030 LET C$ = "blue"
00040 PRINT LEN(A$);LEN(B$);LEN(C$)

Line 40 will print the numbers 3, 6 and 4.

Related Functions