I would like to title case every sentence ending with parentheses containing uppercase letters only NB: do not title case certain words such as "for, and, the" for instance.
So the original sentence is:
foundation for economic education (FEE)
And it should be like that:
Foundation for Economic Education (FEE)
Any help is much appreciated!
Here is my "faulty" code, it capitalizes everything before the parenthesis...
(^[\p{L}\W]+)([(][\p{Lu}]{3,}[)]$)
\U\1\2