Textbox validation: start with alphabet not numericVVviv verma10yAsked Nov 10, 2016, 2:04 AM1.1kWeb DevelopmentTextbox validation: alphabet and numeric but always start with alphabet not numeric
Tapan Patel9y agoPosted Nov 10, 2016, 9:17 AMtry this. var regx = @"^[A-Za-z]"; Console.WriteLine(Regex.IsMatch(Console.ReadLine(), regx)); Please mark it as an answer if it addresses the issue. 0
Tapan PatelPosted Nov 10, 2016, 9:17 AM
Pradeep SahooPosted Nov 10, 2016, 8:53 AM