通過(guò)Lua語(yǔ)言支持其他運(yùn)算符包括串聯(lián)和長(zhǎng)度。
運(yùn)算符 | 描述 | 例子 |
---|---|---|
.. | 連接兩個(gè)字符串。 | a..b 如果a為 "Hello " 并且b為 "World", 那么將返回 "Hello World". |
# | 一元運(yùn)算符返回一個(gè)字符串或一個(gè)表的長(zhǎng)度。 | #"Hello" 會(huì)返回 5 |
試試下面的例子就明白了在Lua編程語(yǔ)言提供的其他運(yùn)算符:
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" )
當(dāng)建立并執(zhí)行上面的程序它會(huì)產(chǎn)生以下結(jié)果:
Concatenation of string a with b is Hello World Length of b is 5 Length of b is 4