lua实现多个字符串拼接
时间: 2023-07-03 11:12:37 浏览: 261
拼接字符串
在Lua中,可以使用运算符 .. 来进行字符串的拼接。以下是一个示例代码:
```
local str1 = "Hello, "
local str2 = "world!"
local str3 = " How are you?"
local result = str1 .. str2 .. str3
print(result) -- 输出 "Hello, world! How are you?"
```
解释一下代码的执行过程:
1. 将字符串"Hello, "赋值给变量str1。
2. 将字符串"world!"赋值给变量str2。
3. 将字符串" How are you?"赋值给变量str3。
4. 使用运算符..将三个字符串拼接到一起,并将结果存储在变量result中。
5. 将变量result打印出来,得到输出结果为"Hello, world! How are you?"。
最终输出结果为拼接后的字符串"Hello, world! How are you?"。可以使用多个变量和运算符..来进行字符串的拼接。
阅读全文