I would like to remove any line breaks/carriage returns at the start and end of files but eclipse doesn’t seem to recognize $$ or ^^ for end/start of file. Anyone know how to do a regex with eclipse search?
sof ^^ Start of File
eof $$ End of File
It seems by default, the multi-line flag
mis enabled in Eclipse, causing^and$to match start- and end-of-lines. You can disable themflag by adding(?-m)in front of your regex.I just tested it, and it only removes line breaks at the start or end of the file: