lowercase

string
lowercase
(
string s
)

Return Value

Type: string

a string with all uppercase alphabets converted into lowercase

Examples

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

Meta