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