这篇文章主要介绍了Lua中..和#运算符的使用方法,是Lua入门学习中的基础知识,需要的朋友可以参考下ShBHTML5中文学习网 - HTML5先行者学习网
通过Lua语言支持其他运算符包括串联和长度。ShBHTML5中文学习网 - HTML5先行者学习网

例子ShBHTML5中文学习网 - HTML5先行者学习网
试试下面的例子就明白了在Lua编程语言提供的其他运算符:ShBHTML5中文学习网 - HTML5先行者学习网
代码如下:ShBHTML5中文学习网 - HTML5先行者学习网
a = "Hello "ShBHTML5中文学习网 - HTML5先行者学习网
b = "World"ShBHTML5中文学习网 - HTML5先行者学习网
print("Concatenation of string a with b is ", a..b )ShBHTML5中文学习网 - HTML5先行者学习网
print("Length of b is ",#b )ShBHTML5中文学习网 - HTML5先行者学习网
print("Length of b is ",#"Test" )ShBHTML5中文学习网 - HTML5先行者学习网
当建立并执行上面的程序它会产生以下结果:ShBHTML5中文学习网 - HTML5先行者学习网
代码如下:ShBHTML5中文学习网 - HTML5先行者学习网
Concatenation of string a with b is Hello WorldShBHTML5中文学习网 - HTML5先行者学习网
Length of b is 5ShBHTML5中文学习网 - HTML5先行者学习网
Length of b is 4ShBHTML5中文学习网 - HTML5先行者学习网