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 regular expression 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.
Any ideas?