Converts a string to lowercase.
to_lower(x:string) -> stringDescription
Section titled “Description”The to_lower function converts all characters in x to lowercase.
Examples
Section titled “Examples”Convert a string to lowercase
Section titled “Convert a string to lowercase”from {x: "HELLO".to_lower()}{x: "hello"}