This tool extracts all words from your text. It provides flexible options so you can extract every word, extract only words matching specified substrings, extract all except those containing specified substrings, or format the extracted words using a custom format. Simply enter your text and select the extraction mode that suits your needs.
Examples:
Extract All Words
Every word in the text is extracted and listed on separate lines.
Before:
Hello world! This is a TEST.
After:
Hello world This is a TEST
Extract Only Words Matching Specified Substrings
Only words containing the specified substring (e.g., "TEST") are extracted.
Before:
Hello world! This is a TEST of the system.
After (specifying "TEST"):
TEST
Extract All Except Words Containing Specified Substrings
Extracts every word except those that contain the specified substring (e.g., "is").
Before:
This is a simple example.
After (excluding "is"):
This a simple example
Extract Words with Custom Format
Each extracted word is formatted using the custom format (e.g., wrapping in square brackets).
Before:
Custom formatted output.
After (format "[{word}]"):
[Custom] [formatted] [output]