I'm cleaning some code and I want to locate all the strings composed of 3 capitalized letters, so I used this regex in the search engine of Visual Studio :
\"[A-Z]{3}\"
However a lot of "GET" show up in the results and make it difficult to see the pertinent results.
As I don't want to touch the "GET", is there a regex to match all the 3 letters strings, but not "GET" ?