Version: 1.0
The Len function returns the length of the string or the byte
size of the variable.
You can give the function the string or the string name, String
or the variable name, Varname.
<% =Len("Clouded leopards are an endangeredspecies.") %>
43
<% anystring ="Clouded leopards are anendangered species." %>
<% =Len(anystring) %>
43
<% anyvariable = 123.456 %>
<% =Len(anyvariable) %>
7