检查文本文档中是否存在字符串

时间:2017-07-24 19:51:49

标签: autohotkey

我有一个包含多个字符串的文本文档, 例如:

Enabled
Start
Mark
David
Dylan

现在我遇到麻烦的是获取自动热键来阅读文本文档,看它是否存在,如果它存在,请选择程序选项。因此,如果它存在,它将点击我的应用程序上的按钮。我怎么会这样做?

1 个答案:

答案 0 :(得分:0)

从文档中查看Loop, Readhttps://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."
    } 
}