Lua - 杂项运算符
Lua 语言支持的各种运算符包括连接和长度。
操作员 | 描述 | 例子 |
---|---|---|
.. | 连接两个字符串。 | 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
lua_operators.htm