I want to delete all lines which contains the word "False"
For example, if I have a Textfile that contains the following :
Before
[email protected]|J|1983>2012>3000|Good|[0=%]
[email protected]|N|1985>2012>3000|False|[~~~'#'***+++~~~]
[email protected]|N|1985>2012>3000|Good|[$"$!]|Number 2123
After
[email protected]|J|1983>2012>3000|Good|[0=%]
[email protected]|N|1985>2012>3000|Good|[$"$!]|Number 2123
Which regex I should use in Notepad++ to delete the unwanted lines?