I am trying to match all consecutive all caps words/phrases using regex in Python. Given the following:
text = \"The following words are ALL CAPS. The follow
Assuming you want to start and end on a letter, and only include letters and whitespace
\b([A-Z][A-Z\s]*[A-Z]|[A-Z])\b
|[A-Z] to capture just I or A