Use {{lowercase}} to convert all letters in the specified string or field to lowercase. This is handy for standardizing case across integrations or preparing data for case-sensitive downstream systems.
-
Hard-coded string
{{lowercase "HERE WE GO!"}}Outputs:
here we go!
-
Record field
{{lowercase record.firstName}}If
record.firstNameis"Jane", this returns"jane". -
Email normalization
{{lowercase record.email}}Ensures the entire email address is in lowercase.
Tip
-
Non-alphabetic characters remain unaffected.
-
Always confirm the field resolves to a valid string; otherwise, unexpected results may occur.
-
For an uppercase equivalent, see
{{uppercase}}.