用户将布尔值设置为 true 或 false。
确实如此(示例)
ElementNameone = true
ElementNametwo = false
ElementNamethree = true
等等。
现在我有一个从文件加载的字符串。名为 name 的字符串可以具有 Nameone、Nametwo、Namethree 等值。一次是其中的任何一个。现在我希望能够做到这一点
if Element .. name == true then
do something
除了我不知道如何正确地做到这一点。
我试过做
if not not ("Element" .. name) then
但它不起作用。
任何人都可以帮忙吗?
谢谢