首页 > 代码库 > ..在lua中运用

..在lua中运用

..连接两个字符串

th> a="hello"
th> b="world"
th> print(a..b)
helloworld    

 

th> a="hello "
th> b="world"
th> print(a..b)
hello world    

 

..在lua中运用