Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

lua how to concatenate string

--lua uses ".." to concatenate

--example
local string1="This is an "
local string2="Example"

print(string1 .. string2)
--returns "This is an Example"
 
PREVIOUS NEXT
Tagged: #lua #concatenate #string
ADD COMMENT
Topic
Name
8+9 =