LEN() Function - Get String Length

Syntax

LEN(string{,ERR=lineref})

Description

The LEN() function returns the length of string.

Examples

>LET A$="123",B$="DEFG"
>PRINT LEN(A$)
3
>PRINT LEN(A$+B$)
7

See Also

Functions - Alphabetical Listing