UPPER
converts a given string to all uppercase.
Function category: Text​
To set all characters in a string to lowercase, use LOWER
​
UPPER(arg1)
Arguments | Description |
| String to be transformed into lowercase. |
Let's say we get the following response all in lowercase:
{"data":{"trip":{"summary": "Metrics indicate journey was a success"}}}
To make the value of the summary field all uppercase, we can use UPPER
.
# Change summary to uppercaseUPPER(data.trip.summary)​# Returns "METRICS INDICATE JOURNEY WAS A SUCCESS"