Returns a numerical value corresponding to the length of a string.
Format
STR_LENGTH (Input String)
Argument
Examples
The following example illustrates the use of the STR_LENGTH function:
Function | STR_LENGTH ("Hello there") |
Result | 11 |
The following function returns 10 because the double slash marks (//) concatenated the two strings into one:
Function | STR_LENGTH ("Hello" // "there") |
Result | 10 |