8.6.10.4.6 Length Function

Syntax

length (expression)

Description

The length function evaluates expression, converts it to a string, and returns the number of characters in the string.

Examples

length ("Hello World") returns 11

length ("") returns 0

Notes

The built-in menu function length performs the same function as strlen.