Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法导入字典或使用 Corona sdk 创建字典。我有一个游戏,用户必须从基本单词创建单词,每次提交单词时我都需要检查它是否正确
创建一个 Lua 表,并使用要存储在字典中的单词填充它,使用单词作为键,使用 true 作为值:
dict = {} dict[word] = true
您可能希望在存储或检查单词之前将它们转换为小写:
word = string.lower(word)
测试本身就是这样的:
if dict[word] then ...