convert string to lowercase lua code example
Example: convert string to lowercase lua
-- convert a string to upper case
local s = 'hello world' s = s:upper()
--> 'HELLO WORLD'
-- convert a string to lower case local s = 'HELLO WORLD'
s = s:lower()
--> 'hello world'