Len: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
LEN(<[[string]]>) | |||
The '''Len'''(string$) [[internal function]] returns the number of characters in variable string$. | The '''Len'''(string$) [[internal function]] returns the number of characters in variable string$. | ||
Latest revision as of 17:28, 22 May 2014
LEN(<string>)
The Len(string$) internal function returns the number of characters in variable string$.
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.