I'm trying to match values by using regular expression, but I'm unable to get why following program returning me false as output.
Regex validateInputString = new Regex("^(\\d)*([a-z[A-Z]])+$");
Console.WriteLine(validateInputString.IsMatch("343sdf"));
Could anyone please tell me?