Lua - 其他运算符
Lua 语言支持的其他运算符包括 concatenation 和 length。
运算符 | 描述 | 示例 |
---|---|---|
.. | 连接两个字符串。 | a..b 其中 a 是"Hello",b 是"World",将返回"Hello World"。 |
# | 返回字符串或表格长度的一元运算符。 | #"Hello" 将返回 5 |
示例
尝试以下示例以了解 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