List of functions and data types in Prelude
String toLower(String s)
Arguments
s: The string to lower-case
Usage
Returns a copy of the string with all letters lower-cased
s = toLower("Hello World!");
// s = "hello world!"
This function may give unusual results with non-ASCII characters.
Related