8

I'm looking for a simple regex exp that will validate a phone number. The number can be between 8 an 10 digits and there can be no other characters. Can someone help out?

dlarkin77
  • 787
  • 1
  • 9
  • 26

5 Answers5

16

It looks like ^[0-9]{8,10}$ does the trick.

Thanks for all the suggestions.

dlarkin77
  • 787
  • 1
  • 9
  • 26
7

You could try this regex:

^[2-9]{2}\d{6,8}$
Darin Dimitrov
  • 960,118
  • 257
  • 3,196
  • 2,876
3

\d{8,10}: would be the simplest way

LastTribunal
  • 5,105
  • 7
  • 31
  • 61
2

Haven't checked it but i guess this will work [2-9][0-9]{7,9}

Rozuur
  • 3,905
  • 23
  • 30
0

Something like that ?

^[^01]\d{2}\d{6,8}$
kerrubin
  • 1,526
  • 1
  • 18
  • 25