a string with all uppercase alphabets converted into lowercase
assert("ABcD".lowercase == "abcd"); assert("abYZ".lowercase == "abyz");
See Implementation