to_upper
Converts a string to uppercase.
to_upper(x:string) -> string
Description
The to_upper
function converts all characters in x
to uppercase.
Examples
Convert a string to uppercase
from {x: "hello".to_upper()}
{x: "HELLO"}
See Also
to_lower
, to_title