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