I need to adapt my Javascript RegEx to match certain patterns only. The RegEx is used in the html5 pattern
attribute to validate an input field.
I want to accept alphanumeric pattern of the following types only:
A-AAAA or BB-BBB (the intended pattern is: 1 digit before the "-", and 4 digits after the "-", or 2 digits before the "-", and 3 digits after the "-").
My current RegEx is:
/([\w]{1,2})(-([\w]{3,4}))/g
This one works, but accepts CC-CCCC as well, which is obviously a valid input pattern, but not the intended pattern. It accepts DDD-DDDD as well; valid again, but not intended.
Could you please assist adapting the pattern?
You can use alternation based regex in HTML5 pattern
attribute (as it has implicit anchors):
/(?:\w-\w{4}|\w{2}-\w{3})/
RegEx Demo
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With