This formula calculates the length of the given string and returns the number of characters, including all white spaces.
Len( String )
string | The input string to count characters of. |
---|
The number of characters in the given string.
len("") // Returns the value 0. len("abc") // Returns the value 3.