I wonder if someone knows a quick and easy way to select words in a string where all the characters are uppercase.
I want to exclude numbers, symbols, spaces and everything else. I only need to flag words with all upper case.
Something like this:
mystring flag
BMW 1
BMW9 0
XS.9 0
XA 1
xA 0
xA. 0
I want to exclude numbers, symbols, spaces and everything else. I only need to flag words with all upper case.
Something like this:
mystring flag
BMW 1
BMW9 0
XS.9 0
XA 1
xA 0
xA. 0
Comment