推荐答案
Lua 的字符串连接运算符是 ..
。
本题详细解读
在 Lua 中,字符串连接是通过 ..
运算符来实现的。这个运算符可以将两个字符串连接在一起,生成一个新的字符串。例如:
local str1 = "Hello" local str2 = "World" local result = str1 .. " " .. str2 print(result) -- 输出: Hello World
在这个例子中,str1 .. " " .. str2
将 str1
、一个空格和 str2
连接在一起,生成一个新的字符串 "Hello World"
。
需要注意的是,..
运算符不仅可以连接字符串,还可以连接其他类型的值,Lua 会自动将这些值转换为字符串。例如:
local num = 42 local str = "The answer is " .. num print(str) -- 输出: The answer is 42
在这个例子中,num
是一个数字,但 Lua 会自动将其转换为字符串并与前面的字符串连接在一起。