The "Remove Lines Containing Text" tool is a line filter that lets you keep exactly the lines you want from a block of text. You give it a keyword, a phrase, or a regular expression, and it either strips away every line that matches it or keeps only the lines that match it. The result is a clean, trimmed text list in seconds.
This is invaluable when you work with log files, lists, code, or any text where you need to drop or isolate a set of entries. Instead of deleting lines one by one, you paste your text, set your filter, and the tool decides which lines stay and which go - consistently and instantly.
I built this tool in plain JavaScript with no installs and no server. It splits your text into lines, checks each line against your filter (as a plain substring or a regular expression), and keeps or drops it based on the mode you choose. It then tells you how many lines and characters flowed in and out, so you can see exactly what changed. Everything runs locally in your browser, so your text never leaves your device.