Answered
Regex ^\d{8}$ fails if first digit/digits are zero. Why?
Hey thanks for reading.
I've tried two reg expressions to find an 8 character numeric entry. Despite working on regexr, neither work in acrobat if the entry starts with 0.
^\d{8}$
or
^[0-9]{8}$
So 12345678 works in both.
but 01234567 doesn't. Why?
