Hi! I have this combination of data.
ABC Video
DEF
GHI
Video of JKL
(MNO)
PQR123 Video
What i wish to do is to get the strings that are all in uppercase. Hence, the output should be
ABC
DEF
GHI
JKM
MNO
PQR
I tried this expression of (A-Z\s]*) using RegEx_Match however is only getting those that are only of uppercase string. In this case,
DEF
GHI
How do I ensure it captures all the string in uppercases without the lowercases, special character or digits?
I would greatly appreciate your help.