srkirkland / DataAnnotationsExtensions

Validation extensions for DataAnnotations, including optional MVC client validation implementations
https://dataannotationsextensions.apphb.com/
BSD 3-Clause "New" or "Revised" License
308 stars 86 forks source link

New Regex for Month & USZipCode #51

Closed srkirkland closed 8 years ago

srkirkland commented 12 years ago

Month RegEx => private static Regex _regex = new Regex(@"^(?:J(anuary|u(ne|ly))|February|Ma(rch|y)|A(pril|ugust)|(((Sept|Nov|Dec)em)|Octo)ber)$");

USZipCode => private static Regex _regex = new Regex(@"^\d{5}$|^\d{5}-\d{4}$");