Lowercase
Strings
Pure
Lowercase
Text
Result
Description
Pure function returning the text converted to lowercase using the root locale.
When to use
Use Lowercase to normalise text before comparison, URL construction, or slug generation. The root locale ensures consistent results independent of the server’s runtime locale. Pair with Trim to fully normalise user-supplied strings before passing them to Equals or String contains?.
Pins
Input pins
| Pin | Type | Default | Notes |
|---|---|---|---|
| Text | string | — | The string to convert. Conversion uses the root locale, so results are locale-independent. |
Output pins
| Pin | Type | Notes |
|---|---|---|
| Result | string | The lowercased string. |
Example
Check whether a tag value contains the word “urgent” regardless of casing. Wire the
tag string into the Text input of Lowercase, then feed the Result output into the Text
input of String contains? with Search set to "urgent". Connect the Result output to
the Condition input of Branch — any of “Urgent”, “URGENT”, or “urgent” will produce a
true result after lowercasing.