/^\w{3}[0,4-9]{3}\w{3}$/
Hello-
I need to match any string which contain:
any 3 letters
any 3 digits _but_not_123_
any 3 letters
so:
xxx765xxx should match
vvv123vvv should be omitted
is it possible to write proper regular expression?
Regards-
shaman