vote up 2 vote down star
1

I thought people would be working on little code projects together, but I don't see them, so here's an easy one:

Code that validates a valid US Zip Code. I know there are ZIP code databases out there, but there are still uses, like web pages, quick validation, and also the fact that zip codes keep getting issued, so you might want to use weak validation.

I wrote a little bit about zip codes in a side project on my wiki/blog:

https://benc.fogbugz.com/default.asp?W24

There is also a new, weird type of zip code.

https://benc.fogbugz.com/default.asp?W42

I can do the javascript code, but it would be interesting to see how many languages we can get here.

flag
Your blog post states that "ZIP + 4 (10 digits)", after stating that a plain ZIP code is 5 digits. I have a hard time understanding the maths, here. – unwind Feb 13 at 15:21
@unwind: ZIP+4 is actually 10 characters, not 10 digits. It's 9 digits, formatted as 12345-6789. The reference on that page to ZIP+4 being 10 digits is incorrect. – Dave Sherohman Feb 13 at 15:44
good point, I'll clarify that. – benc Feb 13 at 22:54

6 Answers

vote up 1 vote down check

Javascript Regex Literal:

US Zip Codes: /(^\d{5}$)|(^\d{5}-\d{4}$)/

var isValidZip = /(^\d{5}$)|(^\d{5}-\d{4}$)/.test("90210");

Some countries use Postal Codes, which would fail this pattern.

link|flag
You can replace your test regex with /(^\d{5}(-\d{4})?$/ to be a bit more concise. It will also run marginally faster in many regex engines. – Dave Sherohman Feb 13 at 15:41
vote up 2 vote down

Only 5% of the world uses zip codes. If you are writing a web site, don't forget the other 95% and fail the validation because the user typed in something that fails a US zip code validator.

link|flag
Most of the sites I work on were US-only. I'm not saying this is a global adress validator, but you have to develop each postal system's validator code separately. For example, you couldn't easy create a single piece of code that did the US and Canada. – benc Oct 2 '08 at 5:58
If you need the address, I would assume you're going to ship something to the address; then how can you be sure you will never, ever need to send something outside your country? – Stein Gauslaa Strindhaug Nov 26 '08 at 8:27
vote up 1 vote down
function isValidUSZip(sZip) {
   return /^\d{5}(-\d{4})?$/.test(sZip);
}
link|flag
vote up 0 vote down

Hi, Are you referring to address validation? Like the previous answer by Mike, you need to cater for the othe 95%.

What you can do is when the user select's their country, then enable validation. Address validation and zipcode validation are 2 different things. Validating the ZIP is just making sure its integer. Address validation is validating the actual address for accuracy, preferably for mailing.

link|flag
vote up 0 vote down

Here's a JavaScript function which validates a ZIP/postal code based on a country code. It allows somewhat liberal formatting. You could add cases for other countries as well. Note that the default case allows empty postal codes since not all countries use them.

function isValidPostalCode(postalCode, countryCode) {
    switch (countryCode) {
        case "US":
            postalCodeRegex = /^([0-9]{5})(?:[-\s]*([0-9]{4}))?$/;
            break;
        case "CA":
            postalCodeRegex = /^([A-Z][0-9][A-Z])\s*([0-9][A-Z][0-9])$/;
            break;
        default:
            postalCodeRegex = /^(?:[A-Z0-9]+([- ]?[A-Z0-9]+)*)?$/;
    }
    return postalCodeRegex.test(postalCode);
}

FYI The second link referring to vanity ZIP codes appears to have been an April Fool's joke.

link|flag
I'm pretty sure that you are referring to the NPR story from 2004 (which I just found). The info in the 2nd link was from 2007, and I think one of the articles I read was actually from the USPS site (I didn't save every link). – benc Oct 2 '08 at 6:11
vote up 0 vote down

To allow a user to enter a Canadian Postal code with lower case letters as well, the regex would need to look like this:

/^([a-zA-Z][0-9][a-zA-Z])\s*([0-9][a-zA-Z][0-9])$/

link|flag
Are lower case letters allowed? I took a quick look in the wikipedia entry, and the examples appear to be all upper-case, but it was not stated explicitly. – benc Feb 18 at 21:35

Your Answer

Get an OpenID
or

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