我目前在AutoIt中設置了一個程序。這是什麼寫成的代碼,以及一些注意事項,可能是有用的,回答我的問題: ;File with data is pw.txt
$fh = FileOpen("pw.txt")
;Loops 5 times, every time it loops $attempt should equal the next line of pw.txt
For $i = 1
我有一個Measure函數多次執行模式以獲得平均執行時間。 This is the subject string。我的第一個模式是(?m)^Connection:(.+),第二個模式是(?m)Connection:(.+)。正如你所看到的,唯一的區別是開始線^。我認爲前者會更快,因爲它會更快失敗。然而,我的測試結果報告,^的模式需要約0.9ms,而沒有^的模式只需要約0.1ms。我預測的缺陷