Returns the number of characters in the input string.
Function
result = len(input)
Arguments
Argument | Data Type |
input | string |
---|---|
result | integer |
Comments
If the string is a rich-text string then this will be inclusive of HTML formatting characters.
Examples
result = len('Brave New World') /* result = 15 */