How can I write a regex expression that checks a certain numeral at a certain place?
For example, if I want to have regex for only numerals, length 7 - I will write something like
^[0-9]{7}$
But how can I make that the 4th digit is always 1?
Example:
0031000 true
9991999 true
9992999 false