Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

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'
Source by help.interfaceware.com #
 
PREVIOUS NEXT
Tagged: #convert #string #lowercase #lua
ADD COMMENT
Topic
Name
8+1 =