Lua - 杂项运算符

  • 简述

    Lua 语言支持的其他运算符包括 concatenationlength.
    操作员 描述 例子
    .. 连接两个字符串。 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