I have a RegularExpressionValidator where the only valid input is 8 characters long and consists of the letters MP followed by six digits. At the moment I have the following regex which does work
^(MP|mp|Mp|mP)[0-9]{6}$
but it feels a bit hacky. I'd like to be able to specify that the MP can be any combination of upper and lower case without having to list the available combinations.
Thanks,
David