Lua Programming/case conversion
The lua string library provides the string.upper and string.lower functions for converting strings to uppercase or to lowercase:
string.lower
editUsage
editstring.lower(STRING)
Description
editThe string.lower function returns a lowercase version of the STRING argument. This function converts all letters to lowercase in the returned string. Only the returned string is converted, the provided argument remains unchanged:
print (string.lower("I Like Apples"))
string.upper
editUsage
editstring.upper(STRING)
Description
editThe string.upper function returns an uppercase version of the STRING argument. This function converts all letters to uppercase in the returned string. Only the returned string is converted, the provided argument remains unchanged:
print (string.upper("I Like Apples"))
These functions are affected by the locale settings
editThese function are affected by the following locale environment variable settings.
- LC_ALL
- LC_CTYPE