Regular expression to match exact number of characters?

前端 未结 2 1345
忘了有多久
忘了有多久 2020-12-08 06:14

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 s

相关标签:
2条回答
  • 2020-12-08 06:43

    What you have is correct, but this is more consice:

    ^[A-Z]{3}$
    
    0 讨论(0)
  • 2020-12-08 06:52

    Your solution is correct, but there is some redundancy in your regex.
    The similar result can also be obtained from the following regex:

    ^([A-Z]{3})$
    

    The {3} indicates that the [A-Z] must appear exactly 3 times.

    0 讨论(0)
提交回复
热议问题