I need a regular expression that will match any three uppercase letters, so AAA or ABC or DKE. It can't match four or more though, like AAAA or ABCDEF or aBBB.
My solution: ^([A-Z][A-Z][A-Z])$
Questions:
This question is related to
regex
What you have is correct, but this is more consice:
^[A-Z]{3}$