Copy CodeRegex reg = new Regex(@"^[0-9]{10}$");
string inputOK = "9876543214";
string inputBad1 = "876543214";
string inputBad2 = "09876543214";
if (reg.IsMatch(inputOK)) Console.WriteLine("OK");
if (!reg.IsMatch(inputBad1)) Console.WriteLine("OK");
if (!reg.IsMatch(inputBad2)) Console.WriteLine("OK");
/^(?:(?:+|0{0,2})91(s*|[-])?|[0]?)?([6789]d{2}([ -]?)d{3}([ -]?)d{4})$/
^(+d{1,2}s)?(?d{3})?[s.-]?d{3}[s.-]?d{4}$