Lists
Remove Lines Containing Text
Delete every line that matches a word, phrase or pattern.
Discards the lines that match and keeps the rest — the equivalent of grep -v. Useful for stripping known noise out of a log before reading it. An empty search term is treated as a no-op rather than a match-everything, so clearing the field restores your text.
Options
Every test has a “does not” form. An empty search term is still a no-op either way.
Match cat but not cats or concatenate.
Blank lines are never removed even if they do not match.
InputText is processed entirely in your browser.
0lines0words0characters0 B
Output
0lines0words0characters0 B
Options explained
- Match when the line — Every test has a “does not” form. An empty search term is still a no-op either way.
- Whole word only — Match cat but not cats or concatenate.
- Always keep blank lines — Blank lines are never removed even if they do not match.