/
Change Case directive
Change Case directive
The UPPERCASE, LOWERCASE, and TITLECASE directives change the case of column values they are applied to.
Syntax
lowercase :column
uppercase :column
titlecase :column
The directive performs an in-place change of case.
Example
Using this record as an example:
{
"id": 1,
"gender": "male",
"fname": "Root",
"lname": "JOLTIE",
"address": "67 MARS AVE, MARSCIty, Marsville, Mars"
}
Applying these directives
uppercase :gender
titlecase :fname
titlecase :lname
lowercase :address
results in this record:
{
"id": 1,
"gender": "MALE",
"fname": "Root",
"lname": "Joltie",
"address": "67 mars ave, marscity, marsville, mars"
}
, multiple selections available,
Related content
Change Column Case directive
Change Column Case directive
Read with this
Set Column directive
Set Column directive
Read with this
Columns Replace directive
Columns Replace directive
Read with this
Fail on condition directive
Fail on condition directive
Read with this
Filter Row If Matched directive
Filter Row If Matched directive
Read with this
Catalog Lookup directive
Catalog Lookup directive
Read with this
Created in 2020 by Google Inc.