i\'ve been trying for some time now to get this working, but i can\'t find a solution to this task myself - ok, i\'m very new to regex-use but quite interested to learn, hop
You can use a regex like this:
\(.*?\)|(\w+)
Working demo
Then on your Find/Replace dialog you can put \U\1 on Replace with. So, if you go over Find Next you can replace the string to generate the uppercase output.

You can use this regex:
(.+?)\[
Working demo
