lowercase

Returns a string with all uppercase alphabets converted into lowercase

string
lowercase
(
string s
)

Examples

assert("ABcD".lowercase == "abcd");
assert("abYZ".lowercase == "abyz");

Meta