I have the following rule:
Don't allow numbers of any sequence with 4 or more 0s at the beginning.
So this number:
0000438967
will fail validation (4 zeros)
But this number:
0004389678 (3 zeros)
Will pass validation.
the reason for this question was I needed verification on whether I was doing it correctly as, when checking in online Regex validators, I was getting mixed verification results. I know it sounds like a simple question but verification from others is important.
thanks Russ