I can't find a working regex in python to split these strings:
CAT One | desired: CAT
DOG SILVER FOX Two | desired: DOG SILVER FOX
KING KONG | desired: KING KONG
P'OT THEN Mark First | desired P'OT THEN
Just stupid examples, but i need to separate words that are full uppercase from words that are only capitalized.
I could have {1,n} uppercase words and {0,n} capitalized words.
My regexs were too weird, i catch all the string or only one uppercase word..

regextag description – xanatos Oct 29 '11 at 11:08