Reputation: 779
I have notepad++ 5.8.2 and I was trying to remove all lines starting with 'Processed XXXXX total records' where XXXXX is a various number.
I tried to CTRL+H and put 'Processed.$ in Find what selecting Regular Expression and putting blank in Replace with but it doesn't even find those lines Processed. Did I do something wrong in regex expression to find and replace them?
Upvotes: 6
Views: 20265
Reputation: 99041
This will help you:
Regular Expression
at the bottomAfter, you may want to clean all the blank lines:
Upvotes: 4
Reputation: 702
Depending on what eol designation you use this will delete the line, and leave no blank line.
^Processed\d+ total records.*$\n or
^Processed\d+ total records.*$\r\n
Upvotes: 0
Reputation: 779
Nevermind,... found it right now... Had just to do .Processed.*$ with Regular Expression and it replaced with blank line then removed blank lines with TextFX integrated plugin
Upvotes: -1