在Lua中,可以使用==操作符來判斷兩個字符串是否相等。例如:
local str1 = "hello"
local str2 = "world"
if str1 == str2 then
print("字符串相等")
else
print("字符串不相等")
end
輸出結果是"字符串不相等",因為str1和str2的值不相等。
此外,Lua中還提供了string庫中的函數來進行字符串比較,例如使用string.compare函數:
local str1 = "hello"
local str2 = "world"
if string.compare(str1, str2) == 0 then
print("字符串相等")
else
print("字符串不相等")
end
這段代碼同樣輸出"字符串不相等"。