-1
結束我有一個名爲a.ini文件包含如何不斷從開始讀取ini文件中使用的AutoIt
a.ini
[Settings]
a=1 to a=0
b=1 to b=0
c=1 to c=0
Func read()
Local $var = IniReadSection("settings.ini", "Settings")
If @error Then
MsgBox(4096, "", "Error occurred, probably no INI file.")
Else
For $i = 1 To $var[0][0]
ConsoleWrite("=" & $var[$i][1] & @CRLF & $var[$i][0])
EndIf
Next
EndIf
EndFunc
以及如何不斷找到從= 1修改爲A = 0,以及如何將價值打破這個循環