Answers for "regular expression only accept numbers from 1 to 1000"

4

regex 10 numbers only

@"^d{10}$"
Posted by: Guest on May-10-2021
0

regex for accepting mobile number only in 10 digit

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");
Posted by: Guest on March-23-2021

Code answers related to "regular expression only accept numbers from 1 to 1000"

Browse Popular Code Answers by Language