我从 Ini 文件中检索具有一系列文件扩展名的字符串到数组。本质上,我想检查我的变量 %ext% 是否等于数组中的任何这些文件扩展名。为了澄清起见,我不提前知道有多少物品。
我知道我解释得不好,所以我会尝试用伪代码来阐明
ext := jpg ;(for example)
IniRead, extsFromFile, data.ini, Images, Extensions
StringSplit, allExts, extsFromFile, `,
If (ext = <any of the elements in the array allExts>)
doStuff()
我对如何在 Autohotkey 中解决这个问题一无所知。我对语言没有我想要的那么熟悉。