Navigation
Synopsis Convert the characters in a string value to upper case.
Function str toUpperCase(str s)
Usage import String;
Description Converts all characters in string s to upper case.

Also see toLowerCase.
Examples
rascal>import String;
ok
rascal>toUpperCase("AaBbCc123");
str: "AABBCC123"
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.