欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Lua中..和#运算符的使用方法

程序员文章站 2022-06-24 11:52:25
通过lua语言支持其他运算符包括串联和长度。  例子 试试下面的例子就明白了在lua编程语言提供的其他运算符: 复制代码 代码如下:a = "hel...

通过lua语言支持其他运算符包括串联和长度。

Lua中..和#运算符的使用方法

 例子

试试下面的例子就明白了在lua编程语言提供的其他运算符:

复制代码 代码如下:
a = "hello "
b = "world"

print("concatenation of string a with b is ", a..b )

print("length of b is ",#b )

print("length of b is ",#"test" )

当建立并执行上面的程序它会产生以下结果:

复制代码 代码如下:
concatenation of string a with b is  hello world
length of b is  5
length of b is  4