I'm looking for the ultimate postal code and zip code regex. I'm looking for something that will cover most (hopefully all) of the world.
|
1
|
|||||||
|
|
|
There is none. Postal/zip codes around the world don't follow a common pattern. In some countries they are made up by numbers, in others they can be combinations of numbers an letters, some can contain spaces, others dots, the number of characters can vary from two to at least six... What you could do (theoretically) is create a seperate regex for every country in the world, not recommendable IMO. But you would still be missing on the validation part: Zip code You can't. |
||||||
|
|
|
There are reasons beyond shipping for having an accurate postal code. Travel agencies doing tours that cross borders (Eurozone excepted of course) need this information ahead of time to give to the authorities. Often this information is entered by an agent that may or may not be familiar with such things. ANY method that can cut down on mistakes is a Good Idea™ However, writing a regex that would cover all postal codes in the world would be insane. |
||
|
|
|
The problem is going to be that you probably have no good means of keeping up with the changing postal code requirements of countries on the other side of the globe and which you share no common languages. Unless you have a large enough budget to track this, you are almost certainly better off giving the responsibility of validating addresses to google or yahoo. Both companies provide address lookup facuilities through a programmable API. |
||
|
|
|
|
Trying to cover the whole world with one regular expression is not completely possible, and certainly not feasible or recommended. Not to toot my own horn, but I've written some pretty thorough regular expressions which you may find helpful. It is not possible to guarantee accuracy without actually mailing something to an address and having the person let you know when they receive it, but we can narrow things by down by eliminating cases that we know are bad. |
|||
|
|
|
|
We use the following: Canada
America
Other
|
||||||
|
|
|
You have a problem. You write a regex for it. Now you have two problems. |
||||||||||
|
|
|
As noted elsewhere the variation around the world is huge. And even if something that matches the pattern does not mean it exists. Then, of course, there are many places where postcodes are not used (e.g. much or Ireland). |
||
|
|
|
Why are you doing this and why do you care? As Tom Ritter pointed out, it doesn't matter whether you even have a ZIP/postal code at all, much less whether it's valid or not, until and unless you are actually going to be sending something to that address. Even if you expect that you will be sending them something someday, that doesn't mean you need a postal code today. |
||
|
|
|
Depending on your application, you might want to implement regex matching for the countries where most of your visitors originate and no validation for the rest (accept anything). |
|||
|
|
|
|
Given that there are so many edge cases for each country (eg. London addresses may use a slightly different format to the rest of the UK) I don't think that there is an ultimate regex other than maybe:
Best of going with a fairly broad pattern (well not quite as broad as the above), or treat each country/region with a specific pattern of its own! UPDATE: However, it may be possible to dynamically construct a regex based upon lots of smaller, region specific rules - not sure about performance though! Lots of country specific patterns can be found on the RegExLib site. |
||||
|
|
|
This looks like a good reference although it's not in Regex. Really, unless you're actually shipping something to your users, I don't think it's worth the effort. And if you are shipping it, there are address cleaning tools/services you can look into to make it way easier on yourself. |
||
|
|
