Well, I guess that that is my title is pretty much self explanatory on what I'm about to achieve.
Here is an example of my current text file:
"Diva" was the winning song of the Eurovision Song Contest 1998.
Who will win Eurovision Song Contest 2015?
Eurovision Song Contest Statistics:
Who will win Eurovision 2015?
This is what I want to get:
"Diva" was the winning song of the Eurovision Song Contest 1998.
Eurovision Song Contest Statistics:
So basically each line that contains the ?
character (the location doesn't necessarily have to be at the end of the line) will be replaced with nothing.
I have tried [^\r\n]*?[^\r\n]*([\r\n]+|$)
but it removes too much.
^[^\n]*\?[^\n]*(?:\n|$)
Try this.Replace by empty string
.See demo.
https://regex101.com/r/sJ9gM7/76
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