3.5.7.23 Len

Description

This function returns the number of characters of a string (str).

Syntax

int Len(string str$)

Parameters

str

is the string whose length you want to get.

Return

return the number of characters of a string.


Example

string str$ = "abc ABC";
int nn = Len(str$);
nn = ; //should return 7

See Also