Navigation
Synopsis Convert the characters in a string value to lower case.
Function str toLowerCase(str s)
Usage import String;
Description Convert all characters in string s to lowercase. Also see toUpperCase.
Examples
rascal>import String;
ok
rascal>toLowerCase("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.