Can anyone help with this one please
I need a regex pattern to check the first 2 numbers match either 01
or 02
or 03
or 07
only
Can anyone help with this one please
I need a regex pattern to check the first 2 numbers match either 01
or 02
or 03
or 07
only
^0[1237]
^
- the start of the string0
- a zero[1237]
- a character set which matches one of the listed