Hi,
Quite new to regex and I'm having a hard time wrapping my head around something I thought to be quite straight forward.
I have a set of strings consisting of a mix of words. I want to remove all words that are ALL uppercase, while saving all words with first letter uppercase (Proper) as well as all lowercase words.
E.g.
Input
"Car BLUE FAST EXPENSIVE"
"BLUE SLOW Railroad car CHEAP"
Output:
"Car"
"Railroad car"
Would be very grateful for any help with this!