πFilter Text
π Filter Text
The Filter Text tool allows you to process large blocks of text by isolating or excluding lines based on a matching pattern. Whether you're scrubbing data, pulling emails, or filtering keywords, this tool offers both basic pattern search and advanced RegEx support to meet your needs.
π― Use Case Examples
π§Ή Removing irrelevant lines from logs, dumps, or exports
βοΈ Filtering for lines containing email addresses or domains
πͺͺ Extracting phone numbers, names, or keywords
π Isolating specific order IDs or string patterns from raw input
β Removing duplicates or reversed filter results for clean outputs
βοΈ Main Controls
πͺ Input Text
Paste any block of text β this is your raw data source. Each line is evaluated independently.
πͺ Output (Text Fragment)
This section shows your filtered results after applying the settings.
π§ Filtering Modes
π£ Pattern Matching (default)
Enter a simple pattern such as a word, number, or phrase. The tool returns only lines that contain that pattern.
Example: Enter
@gmail.com
to show only Gmail addresses.
π£ Regular Expression (RegEx)
Toggle this on for powerful pattern-based filtering using RegEx syntax.
Example: Use
^\d{4,}
to extract lines starting with 4+ digits.
π§° Additional Toggles
π Remove Duplicate Lines
Enables deduplication of matching results β only unique lines will be kept.
β©οΈ Reverse Filter Mode
Inverts the filtering logic. Instead of matching your pattern, it shows lines that do not match the given input.
Useful when cleaning out known values and keeping the rest.
π§ͺ Sample Scenarios
abc@gmail.com
@gmail.com
Pattern Matching
β Keep
xyz@yahoo.com
@gmail.com
Pattern Matching
β Discard
Order #93827
^\d
RegEx
β Discard
12345ABC
^\d
RegEx
β Keep
π‘ Pro Tips
π§ Use simple words for basic searches and RegEx for complex structures π Combine "Reverse Filter" with RegEx to scrub out spam patterns π Use Remove Duplicate Lines to clean up form submissions, lists, or database dumps π οΈ The tool works best with one entry per line (CSV, TXT, JSON Lines)
Last updated