Extract words inside parentheses

Please log in or register to do it.

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.

Extraction Modes:


Extracts every word found inside any parentheses, listing each word on a separate line.

Extracts only the words inside parentheses that contain the specified substring(s). Enter a comma‑separated list (e.g., test, hello).

Extracts every word inside parentheses except those that contain the specified substring(s). Enter a comma‑separated list (e.g., ignore).

Extracts each word inside parentheses and formats it using a custom format. Use {word} as a placeholder.

Extracts the entire content inside each set of parentheses as one line.

Examples:

Extract All Words Individually

Extracts each word inside parentheses on a separate line.

Before:
This is a test (hello world) and (example text).
After:
hello
world
example
text

Extract Only Words Matching Specified Substrings

Only extracts words containing the specified substring (e.g., "world").

Before:
This is a test (hello world) and (example text).
After (specifying "world"):
world

Extract All Except Words Containing Specified Substrings

Extracts every word inside parentheses except those containing the specified substring (e.g., "example").

Before:
This is a test (hello world) and (example text).
After (excluding "example"):
hello
world
text

Extract Words with Custom Format

Each extracted word is formatted using the custom format.

Before:
Custom formatted (output example).
After (format "[{word}]"):
[output]
[example]

Extract Entire Phrases Inside Parentheses

Extracts the full content inside each set of parentheses as one line.

Before:
This is a test (hello world) and (example text).
After:
hello world
example text
Extract phone numbers
Extract only emails from specific domains

Your email address will not be published. Required fields are marked *