This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
UPPER
Dan Gorman edited this page Nov 29, 2018
·
3 revisions
UPPER
converts a given string to uppercase.
UPPER(arg1)
-
arg1
is the string to be lowercased
Let's say we receive an api response , as below:
{
"data":{
"trip":{
"summary": "the trip was good as measured by standard metrics"
}
}
}
To make it uppercase, we can use UPPER
:
UPPER(data.trip.summary)
which returns "THE TRIP WAS GOOD AS MEASURED BY STANDARD METRICS"
.
For a function that sets all characters in a string to lowercase, use LOWER