位置:首頁 > 腳本語言 > Lua教學 > Lua其他運算符

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