..在lua中运用

..连接两个字符串

th> a="hello"
th> b="world"
th> print(a..b)
helloworld    
th> a="hello "
th> b="world"
th> print(a..b)
hello world    
原文地址:https://www.cnblogs.com/ymjyqsx/p/6146204.html