vote up 4 vote down star
1

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.

flag

70% accept rate
Must it be a regex? – David Feb 23 at 17:02
One single regex for all postal codes would be useless for most cases, not to mention requiring a lot of unicode encoding. Much better is to check regex on a country-by-country basis so that you don't validate things like "New York, NY AF23Q" as correct. – Jekke Feb 23 at 17:05
I don't need it any longer, so I've lost track of the link, but there used to be a website out there (maintained by a private individual) with lots of information on each country's rules, links to their postal service websites, etc. I'll try to dig it up. After that, though, you're going to have to do it on a country-by-country basis, because there's too much variability. – Adrien May 11 at 20:51

11 Answers

vote up 15 vote down check

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 12345 may exist, but 12346 not, maybe 12344 doesn't exist either. How do you check for that with a regex?

You can't.

link|flag
1  
12345 does exist. Schnectady, NY. (No, I don't live there, but a lot of web sites think I do...) – Dave Sherohman Feb 23 at 17:13
I suspect that a regex could be compiled, but that a task like this be much better suited to a database. The regex would look something like 10000|10001|10002|10003|....... – Kibbee Feb 23 at 17:17
vote up 0 vote down

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.

link|flag
It is only a good idea until the code starts rejecting valid zipcodes either because it is buggy or the zipcodes have changed. Validation is something that must either be right or not there at all. At the very least there should be an override option. – Chas. Owens May 11 at 20:49
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

We use the following:

Canada

([A-Z]{1}[0-9]{1}){3}   //We raise to upper first

America

[0-9]{5}                //-or-
[0-9]{5}-[0-9]{4}       //10 digit zip

Other

Accept as is

link|flag
I'd suggest adding an optional -[0-9]{4} to the US one. Some people do use their ZIP+4. – David Thornley Feb 23 at 20:01
1  
/[0-9]{5}(?:-[0-9]{4})?/ lets you validate both styles from the US at the same time. – Chas. Owens May 11 at 20:51
vote up 0 vote down

You have a problem. You write a regex for it.

Now you have two problems.

link|flag
-1 :: Overused quote on SO – LFSR Consulting Feb 23 at 17:44
I think the most overused quote on SO is "not programming related." – Robert S. Feb 23 at 18:02
Which of those problems does this answer solve? – Rob Kennedy Feb 23 at 18:35
All three of them. – Robert S. Feb 23 at 18:57
At least credit JWZ: regex.info/blog/2006-09-15/247 and the quote is 'Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems.' – Chas. Owens May 11 at 20:56
show 1 more comment
vote up 1 vote down

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).

link|flag
Actually, probably all of Ireland, as I don't think D1, D2, etc. are considered proper post codes as you can't identify an address using just this code and a street number. – Don May 11 at 20:44
vote up 0 vote down

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.

link|flag
Yeah but if they're going to be entering one, might as well make sure it's correct at that point. However, I agree with one of the other answers that basically says, make it validate for the countries that you think will be the majority of your customers. – cdmckay Feb 23 at 19:12
vote up 6 vote down

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).

link|flag
vote up 0 vote down

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:

([0-9][a-z][A-Z])+

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.

link|flag
might want to throw a set of brackets around your character classes... – LFSR Consulting Feb 23 at 17:42
Good point - cheers! – Macka Feb 23 at 19:54
vote up 5 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.