Regex.IsMatch("AX12345678", "^[A-Z]{2}([0-9]){8}$")
Regex.IsMatch("OD12345678", "OD([0-9]+)", RegexOptions.IgnoreCase);
Please Help