특정 패턴이 포함된 줄 제거
붙여 넣은 텍스트에서 특정 패턴이 포함된 줄를 제거해 리스트, 로그, 노트, 프롬프트, 시트 셀을 깔끔하게 정리합니다. 처리는 브라우저 안에서 끝납니다.
Drop every line that matches a phrase or regular expression. Use it to remove debug log lines, advertising blocks, comments, or any content you can describe with a substring or pattern.
Regex patterns honour standard JavaScript syntax. Combine with Regex Tester if you need to validate the pattern first.
Empty lines stay?
Yes — only lines matching the criteria are removed.
Can I keep matching lines instead?
Invert the criteria with a negative lookahead such as ^(?!.*pattern).