I'm cleaning up files using Notepad ++, and trying to delete lines that start with \pard
and have some text then end with a line feed. But \n
doesn't work in RegEx and .*
doesn't work in an extended find and replace.
This is what I've tried unsuccessfully: \pard.*\n
\pard.*
works but leaves the line feed in RegEx.