Function length( str )

Description:
Returns the length of a string in characters.
Parameters:
str (String)
string
Return Value (integer):
number of characters in str
Example:
length("M34") = 3
Signature:
int length(String)