Returns the number of characters in a string.
len(string)
Requires a single argument of a string or text value.
Returns an integer value representing the number of characters in the input.
If the input is null, a null value is returned.
len("Hello") returns 5.
len("What’s up?") returns 10.