To_upper

Formats a string into uppercase letters.

Syntax

to_upper($input)

Parameters

$input: The sting to format.

Example

{
    "key": "one two. tHrEe FoUR" 
}
{
    numbers: to_upper(key)
}
{
    "numbers": "ONE TWO. THREE FOUR"
}