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
"Hello" | String.ToLower | Log
Assert.Is("hello" Break: true)

[info] [sample-wire] hello