This tool extracts only words from your text where the first and last letter are uppercase. A word qualifies if it has at least two characters, and both its first and last characters are uppercase (A–Z). The tool offers flexible options so you can: • Extract every word meeting this condition. • Extract only those words that also contain specified substring(s). • Extract all such words except those that include specified substring(s). • Format each extracted word using a custom format. Additional settings allow you to trim whitespace, remove duplicate words, and sort the results alphabetically. Simply enter your text and select the extraction mode and settings that suit your needs.
Examples:
Extract All Qualifying Words
Extracts every word where the first and last letter are uppercase.
Example input: HI, TeST, AbC, Hello, WORLD.
HI TeST AbC WORLD
Extract Only Words Matching Specified Substrings
Only extracts qualifying words that contain the specified substring (e.g., "ST").
Test input: HI, TeST, AbC, WORLD.
TeST
Extract All Except Words Containing Specified Substrings
Extracts every qualifying word except those that contain the specified substring (e.g., "Ab").
Input: HI, TeST, AbC, WORLD.
HI TeST WORLD
Extract Words with Custom Format
Each extracted qualifying word is formatted using the custom format.
Input: HI, TeST, AbC, WORLD.
[HI] [TeST] [AbC] [WORLD]