street-address-rb / street-address

Detect, and dissect, US Street Addresses in strings.
MIT License
168 stars 85 forks source link

Allow ZIP only parsing #26

Open joshco opened 9 years ago

joshco commented 9 years ago

Feature request. If the input string is simply a ZIP code, eg "10011", then return successfully with just postal_code populated. When collecting address information from subscribers, ZIP/postal_code is often considered good enough

ruckus commented 4 years ago

In your own code: if the input string is all digits and 5 characters long - can you just assume its a zip? Seems like overkill to run a 5 digit character string thru this parsing engine if you can essentially "tell" is already a zip.