Skip to content

String.ToUpper

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

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

Examples

1
2
3
4
5
6
7
@wire(main-wire {
  "Hello" | String.ToUpper | Log
  Assert.Is("HELLO")

} Looped: true)

{logic-behavior: main-wire}