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?
The last version of Notepad++ (v6.0) supports PCRE, so you can do:
search for : .*?False.*\r?\n
replace by : nothing
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With