Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correctly parse address1 ending in US Route number #37

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

mikepaszkiewicz
Copy link

Tweaks regex to prevent stripping ending route numbers (e.g -42 from addresses on US Routes. Changes were tested for parity against a sample of 2MM addresses from our internal dataset.

> parseAddress('737 US-42, ASHLAND, OH 44805')

//output
{
  //missing the -42
  "formattedAddress": "737 US, Ashland, OH 44805",
  "addressLine1": "737 US",
  "streetNumber": "737",
  "id": "737-US,-Ashland,-OH-44805"

  "zipCode": "44805",
  "stateAbbreviation": "OH",
  "stateName": "Ohio",
  "placeName": "Ashland",
   "streetName": "US",
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant