I am asking to see if anyone has a regular expression that would pull just the capital letters out of an expression? For example if I have the committee name Technical Advisory Committee, I want an express that will pull just TAC. I have tried [ABCDEFGHIJKLMNOPQRSTUVWXYZ] and \p(Lu) but each only pulls the 1st capital letter. I have tired to use * and + and {n,} to get all but I can't make it pull all the capital letters.
Thanks for any help!