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