Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the regular expression for a 10 digit numeric number (no special characters and no decimal).

share|improve this question

4 Answers

up vote 34 down vote accepted

Use this regular expression to match ten digits only:

@"^\d{10}$"

To find a sequence of ten consecutive digits anywhere in a string, use:

@"\d{10}"

Note that this will also find the first 10 digits of an 11 digit number. To search anywhere in the string for exactly 10 consecutive digits and not more you can use negative lookarounds:

@"(?<!\d)\d{10}(?!\d)"
share|improve this answer
Sorry for nubiness, but what's a "negative lookaround"? – sova Jan 13 '11 at 21:44
@sova: You can read about lookaround assertions here: regular-expressions.info/lookaround.html. The expression means 10 digits without a digit before - (?<!\d), and without a digit after - (?!\d). – Mark Byers Jan 13 '11 at 21:45

Use the following pattern.

^\d{10}$
share|improve this answer
\d{10}

I believe that should do it

share|improve this answer

Use this:

\d{10}

I hope it helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.