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

[info] [sample-wire] HELLO