Articles in this section

lowercase helper

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.

Usage

{{lowercase field}}
  • field: A string or string-like field (e.g., "EXAMPLE", record.comment).

Examples

  1. Hard-coded string 

    {{lowercase "HERE WE GO!"}}

    Outputs:

    here we go!
  2. Record field 

    {{lowercase record.firstName}}

    If record.firstName is "Jane", this returns "jane".

  3. 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}}.