Example: String functions in expressions

These are the examples of string functions in expressions.
Function
Description
Example
TOLOWER, ToLower, or tolower
Converts any uppercase characters to lower lowercase. Converts a numeric to a string containing that number.
TOLOWER("New York")
returns "new york".
This expression converts a numeric to a string containing that number:
TOLOWER(32) + TOLOWER(34)
returns "3234".
TOUPPER, ToUpper, or toupper
Converts any lowercase characters to uppercase.
TOUPPER("hello")
returns "HELLO".
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal