Text filtering is a foundational operation in data processing, log analysis, and software development. This tool brings the power of classic Unix command-line tools — grep, head, tail — to the browser, with no installation required.
This tool uses JavaScript regular expressions. Common patterns: ^start matches lines beginning with "start"; end$ matches lines ending with "end"; \d+ matches one or more digits; (foo|bar) matches "foo" or "bar".
Yes, the Grep and Grep -v modes work like grep "pattern" file and grep -v "pattern" file respectively. The regex mode is like grep -E "regex" file.