iosstreet-addressmailingpasteboard

iOS - Check pasteboard for valid Mailing Address


I am looking for some guidance for how I could check the pasteboard in iOS for a valid mailing address.

If someone pastes

1234 Apple Street
New York, NY 10011

It parses each part of the string to fill in Address, City, State and Zip. It could be any address and It would be ideal if it could be found inside a longer string.

For example

Meet me at 1234 Apple Street New York, NY 10011 See you there!

Still will parse the correct Address, City, State and Zip.

Any help would be much appreciated!

-Wes


Solution

  • I was a developer at SmartyStreets. We were kind of crazy about street addresses, and street addresses drove me crazy (especially parsing them). It's a two-way street. (Am I done with the street puns?)

    First, let's talk about the case where the address is all by itself, because that's easier, albeit still difficult...

    Please reference this other question and answer about the very same thing. I also strongly encourage you follow the links to related questions in both the question and the answer. Parsing addresses is a can of worms, but it's not impossible. It's just really hard to do it reliably.

    Notice in the answer to that question how many different formats valid addresses can appear in. What guarantees do you have that the user will type it in any of those? And that's only a few. There are others. Consider military, PO box, rural route, and other "special" addresses that don't adhere to the typical format. What about addresses that have a two-or-three-word city name? What about addresses that use a grid system like 100 N 500 E, or secondary numbers like suite, apartment, floor, etc? What about addresses with "1/2", hyphens (as a required punctuation), etc? Addresses missing zip codes or city/state?

    All of these and more could be valid. And that's only for US addresses.

    If all your addresses, or even most of them (which isn't the case), came in the form like you proposed above, as an example:

    [Primary Number] [Street Name] [Any of these street suffixes]

    [City Name Followed by a Comma], [State Abbreviation] [5-digit ZIP code]

    Then this would be quite easy. Wouldn't that be nice?

    You could try to write a regular expression like this guy or that guy, but that only works if addresses are a regular language. They're not regular, and regular expressions are not the answer.

    There are a few services which can do this for you because they have a master list (kind of), and the software has to meet rigorous certification standards.

    Obviously, since I work at SmartyStreets, I'm prone to suggest starting your search for an answer there. You can try some freeform addresses on the homepage (just fill out the "Street" field). But be aware of a few things that will probably always be an issue. LiveAddress API will be able to parse street addresses for you, most of the time. Shop around, but this should give you an idea.

    Now your second question: extract a street address from a string of text. This has been extensively covered elsewhere on S.O. and the interwebs, so I won't go into a lot of detail. Basically, to do this reliably, you'll probably need some Natural Language Processing and human interaction to confirm or correct the best guess.

    Don't ever assume these things about un-standardized addresses:

    Again, refer to some other linked posts about this issue. You can make guesses, but always always always have a human confirm the guess if you do that. (Some Mac apps do this. If they detect an address, it will get highlighted, and you can add that address to your contacts. Unfortunately I've seen false positives a lot, and it also misses them a lot.)

    Good luck!