Lua语言中连接字符串的是什么符号?

如题所述

Lua 中,字符串拼接用的是 .. 。举例如下所示:
> print("xtt" .. 'blog')
xttblog
> print(1314 .. 520)
1314520
>
温馨提示:答案为网友推荐,仅供参考
相似回答