StringLen()

edit

returns the len of a string

StringLen( string=string );

Returns: Number

Argument Description
string
string, required
edit

A string or a variable that contains one

Examples

edit
writeDump(stringLen("Lucee"));//5
//Member function
str="I love Lucee";
writeDump(str.Len());//12

See also