Luaでテーブル内に値があるかどうかを確認する方法
forループを使用する方法:function checkValueInTable(value, table) for _, v in ipairs(table) do if v == value then return true end end return false end -- 使用例: local myTable = {1, 2, 3, 4, 5} local searchValue = 3 if checkValueInTable(searchValue, myTable) then print("値がテーブル内に存在します") else print(>>More