Lua 编程/大小写转换
外观
< Lua 编程
lua 字符串库 提供 string.upper 和 string.lower 函数,用于将字符串转换为大写或小写。
string.lower(STRING)
string.lower 函数返回 STRING 参数的小写版本。此函数将返回字符串中的所有字母转换为小写。只有返回的字符串被转换,提供的参数保持不变。
print (string.lower("I Like Apples"))
string.upper(STRING)
string.upper 函数返回 STRING 参数的大写版本。此函数将返回字符串中的所有字母转换为大写。只有返回的字符串被转换,提供的参数保持不变。
print (string.upper("I Like Apples"))
这些函数受以下 区域设置 环境变量设置影响。
- LC_ALL
- LC_CTYPE