I need to validate Canada postal code (for example:M4B 1C7) using C# regular expressions.
Please help.
Thanks.
|
|
Canadian postal codes can't have certain letters. ( D, I, O, etc.) :D EDIT: oh, and if you wanted a space in the middle you can use
\s will match any whitespace, newline and tab included. If you don't want those you could either use ^ to remove newlines and tabs or look up the ascii for the space character. |
|||||||||||||
|
|
I suggest the following:
|
|||||||
|
|
Validating the format of a postal code without validating its meaning isn't worth it, since typos can still result in a valid postal code for the wrong address. You want to validate the code against the address database. See http://www.canadapost.ca/cpo/mc/business/productsservices/atoz/postalcodeproducts.jsf |
|||
|
|
|
Something like this:
|
|||
|
|