Type Function Library string.* Return value String Revision Current Public Release (2018.3326) Keywords string, lower, lowercase See also string.upper()
Change uppercase characters in a string to lowercase.
Note that the definition of uppercase depends on the current locale.
print ( string.lower ( "Hello, Corona UsEr!" ) ) --> hello, corona user! |