I want to delete onliy lines in a file, which starts with a semicolon. e.g.:
; comment ...
Lines which have a semicolon in the line like
path=".;..\;"
precision=14 ;comment ...
should not be deleted!
But my macro delete those lines although i use Find RegExp "^;"
So does anybody know what is wrong? This is the macro:
HexOff
Top
InsertMode
Loop
Find RegExp "^;"
IfFound
DeleteLine
EndIf
EndLoop
; comment ...
Lines which have a semicolon in the line like
path=".;..\;"
precision=14 ;comment ...
should not be deleted!
But my macro delete those lines although i use Find RegExp "^;"
So does anybody know what is wrong? This is the macro:
HexOff
Top
InsertMode
Loop
Find RegExp "^;"
IfFound
DeleteLine
EndIf
EndLoop