The Length()
function calculates the number of characters of a text.
Syntax
Length(text)
Returns
A number that is the character count of a text.
Parameters
text
– a text
Examples
Length("Dog") /* 3 */
Length("") /* 0 */
Length("\"John\"") /* 6 */
Length("\r\n") /* 2 */