August 2003
Intermediate to advanced
1140 pages
68h 45m
English
Len
Len(string)Returns the length of a string as a number. If
string is binary, Len(
) returns the length of the binary buffer. Example:
<cfset MyString="This is my string."> <cfoutput> String: #MyString#<br> MyString is #Len(MyString)# characters long. </cfoutput>