len

Returns the number of characters in the input string.

Function

result = len(input)

Arguments

ArgumentData Type
inputstring
resultinteger

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 */