Suppose I want to delete all those whole lines containing the characters "abc". By whole line, I mean even the newline character.
If I use the regex ^.*abc.*$ and replace it with nothing, empty lines will be left. But I don't even want empty lines. What should I do?