LOWER
converts a given string to all lowercase.
Function category: Text​
To set all characters in a string to uppercase, use UPPER
.
LOWER(arg1)
Arguments | Description |
| String to be changed into all lowercase. |
Let's say we get the following response, but it includes a string all in uppercase
{"data": {"trip": {"summary": "TRIP WAS GOOD AS MEASURED BY STANDARD METRICS"}}}
To make this string in all lowercase, use the following function.
# Change string to lowercase.LOWER(data.trip.summary)​# Returns "trip was good as measured by standard metrics".