Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Match MyRegex = Regex.Match(_input,@"^(((0[5-9])|(1[0-2]))\/(06|2006)|((0[1-9])|(1[0-2]))\/(((0[7-9])|(1[0-9]))|((200[7-9])|(201[0-9]))))$",RegexOptions.IgnoreCase);
if (MyRegex.Success)
{
Console.WriteLine(_input);
}
else
{
Console.WriteLine(_input + " Is not month year or is less than 05/2006");
}