How to Remove the complete line in Notepad++

This is for those situations where you are trying to find a bunch of lines matching against some Regex and you not only want to remove that match but the line as well. The regex command being used is: ^.*_.*\R Breakdown of the command:^ match start of line.* match any...Read more