我有一个包含多个字符串的文本文档, 例如:
Enabled
Start
Mark
David
Dylan
现在我遇到麻烦的是获取自动热键来阅读文本文档,看它是否存在,如果它存在,请选择程序选项。因此,如果它存在,它将点击我的应用程序上的按钮。我怎么会这样做?
答案 0 :(得分:0)
从文档中查看Loop, Read
:https://autohotkey.com/docs/commands/LoopReadFile.htm
Loop, Read, file.txt
{
line := A_LoopReadLine
if (line == "David") {
; do something because David was found.
MsgBox, % "I'm sorry Dave, I'm afraid I can't do that."
}
}