This tool extracts all capitalized words from your text. It provides flexible options so you can extract every capitalized word (i.e. words that start with an uppercase letter), extract only those that match 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 Capitalized Words
Every word starting with an uppercase letter is extracted.
Hello world! This is a Test from NASA and the FBI.
Hello Test NASA FBI
Extract Only Words Matching Specified Substrings
Only capitalized words containing the specified substring (e.g., "NA") are extracted.
Hello world! This is a Test from NASA and the FBI.
NASA
Extract All Except Words Containing Specified Substrings
Extracts every capitalized word except those containing the specified substring (e.g., "FBI").
Hello world! This is a Test from NASA and the FBI.
Hello Test NASA
Extract Words with Custom Format
Each extracted capitalized word is formatted using the custom format (e.g., wrapping in square brackets).
Hello world! This is a Test from NASA and the FBI.
[Hello] [Test] [NASA] [FBI]