Whatever message this page gives is out now! Go check it out!
Len(string or binary object)Parameter | Description |
string | A string, the name of a string, or a binary object |
<cfscript>
myString="The quick brown fox jumped over the lazy dog.";
WriteOutput(Len(myString)); // Returns the length of the input string
</cfscript>