Answers for "convert string to lowercase lua"

Lua
0

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'
Posted by: Guest on January-22-2021

Code answers related to "convert string to lowercase lua"

Browse Popular Code Answers by Language