This tool extracts every word found inside parentheses from your text. It allows you to either extract all such words, extract only those that match specified substrings, exclude those containing specified substrings, or display them in a custom format. Simply enter your text and choose the extraction mode that suits your needs.
Examples:
Extract All Words Individually
Extracts each word inside parentheses on a separate line.
This is a test (hello world) and (example text).
hello world example text
Extract Only Words Matching Specified Substrings
Only extracts words containing the specified substring (e.g., "world").
This is a test (hello world) and (example text).
world
Extract All Except Words Containing Specified Substrings
Extracts every word inside parentheses except those containing the specified substring (e.g., "example").
This is a test (hello world) and (example text).
hello world text
Extract Words with Custom Format
Each extracted word is formatted using the custom format.
Custom formatted (output example).
[output] [example]
Extract Entire Phrases Inside Parentheses
Extracts the full content inside each set of parentheses as one line.
This is a test (hello world) and (example text).
hello world example text