Regular expression to match up to 10 digits

asp.net, regex

Solution

`^[0-9]{1,10}$` or `^\d{0,10}$`

Problem

Possible Duplicate: How do I create a regular expression to accept not more than 10 digits? I want a regular expression which will allow up to 10 digits in a user control having a text box. (ASP.net 3.5).

Original source

Related problems