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"