Search
 
SCRIPT & CODE EXAMPLE
 

LUA

lowercase lua

myString = myString:lower()

-- or

myString = string.lower(myString)
Comment

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'
Comment

PREVIOUS NEXT
Code Example
Lua :: how to remove characters from a string in lua 
Lua :: luau make region 
Lua :: lua calculate average number 
Lua :: roblox make kill brick 
Lua :: roblox difference between __index and __newindex 
Lua :: roblox make debounce 
Lua :: luau loop players 
Lua :: lua hello world 
Lua :: luau table.find() 
Lua :: lua metatable assignment 
Lua :: roblox how to get character from player 
Lua :: print script lua 
Lua :: replace part of string lua 
Lua :: lua clear table 
Lua :: how to access an index of a table lua 
Lua :: lua push to aray 
Lua :: copy table lua 
Lua :: check if player is in group 
Lua :: lua math.random 
Lua :: how do i use the love errors module lua assist 
Matlab :: to detect if a data frame has nan values 
Matlab :: matlab pause code run while simulink finishes 
Matlab :: how do i call a function inside another function in mat 
Basic :: virtualbox 256 vram 
Basic :: visual basic how to dynamically change a button to bold 
Elixir :: ** (Ecto.ConstraintError) constraint error when attempting to insert struct: * id_fkey (foreign_key_constraint) 
Scala :: scala hello world 
Scala :: how to get absolute value in scala 
Excel :: google query select first 10 
Excel :: google sheets conditional formatting other sheet 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =