I have a macro to tidy up a text file that reads as the following -
And it works fine, however when I save it, reload UE and load the macro in the first and last replinfiles lines get changed to findinfiles -
I guess this is because I'm wanting to replace the found text with nothings. However it is what I want to do. Is this a bug or is there another way to do what I want to do ?
Thanks in advance
Code: Select all
InsertMode
ColumnModeOff
HexOff
UltraEditReOn
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" " " ""
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" ", " ","
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" " ," ","
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" "^p^p^p" ""
Code: Select all
InsertMode
ColumnModeOff
HexOff
UltraEditReOn
FindInFiles Log "C:\Users\Chris\Desktop\" "file.txt" " "
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" ", " ","
ReplInFiles Log "C:\Users\Chris\Desktop\" "file.txt" " ," ","
FindInFiles Log "C:\Users\Chris\Desktop\" "file.txt" "^p^p^p"
Thanks in advance