Jump to content

regexp for Typical US address


gw1500se

Recommended Posts

I am struggling to come up with a regexp for verifying a typical US address line of the form:

City , ST zip

Since City can have spaces, . and ' I need to include that in my regexp. The state should be 2 upper case letters (I don't care if it is really a correct abbreviation) followed by a zip code. Here is what I think it should be and I am asking for verification.

[a-zA-Z \.'], [A-Z]{2} [0-9]{5}?

TIA.

Link to comment
Share on other sites

Without the anchors then your regex will only check that the string contains something that matches it. Like there could be stuff after the zip code. With the anchors (or at least the end-of-string $ anchor) you make sure the entire string matches and not just a part of it.

Link to comment
Share on other sites

It's not so much redundant as unnecessary.

In order, your regex will match:

  1. The beginning of the string
  2. At least one character
  3. Zero or more spaces
  4. A comma
  5. Zero or more spaces
  6. Two capital letters
  7. A space
  8. Five digits
  9. The end of the string

Beginning of string + at least one character doesn't really do much because the engine will start matching at the beginning anyways and you're not requiring that the string start with anything in particular. In fact the ^.+[ ]* together are only saying that there must be at least one character before the comma.

You could simply the whole thing to just

.,[ ]*[A-Z]{2} [0-9]{5}$

which will ensure there is a character before the comma, possible spaces after the comma, the state, a space, and the zip code.

Thing is that still doesn't require there to be a city name - it could match the string " , NY 12345". The regex should require at least one non-space character before the comma, keeping in mind that spaces before or after the city name should be allowed.

Link to comment
Share on other sites

  • 7 months later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.