Skip to content

String.ToLower

Name Mandatory Description Default Type
⬅️ Input The string to convert to lowercase. String
Output ➡️ The input string converted to lowercase. String

This shard converts all characters in the input string to lowercase.

Examples

1
2
3
4
5
6
7
@wire(main-wire {
  "Hello" | String.ToLower | Log
  Assert.Is("hello" Break: true)

} Looped: true)

{logic-behavior: main-wire}