I need a regex to limit number digits to 10 even if there are spaces.
For example it allows 06 15 20 47 23
the same as 0615204723
.
I tried: ^\d{10}$
, but how do I ignore spaces?
Also, the number should start with 06
or 07
. (Editor's note, the last requirement was from comments by the OP.)