SecondBASIC Documentation v3

Home / Function Reference / Len()

Len()

Description: Returns the length of a string.

Syntax:

Len(<string>)

Part Description
<string> Required. The string expression to find the length of.

Example:

        a$ = "Hello World"
        Print Len(a$)