street-address-rb / street-address

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

Add case where sometimes addresses are located at highway merges and the merge is indicated in the address. #43

Open seabre opened 6 years ago

seabre commented 6 years ago

We've never actually seen address formatted this way, but it appears to actually be valid according to Pub 28: 11081 N State Highway 27/77, Hayward, WI 54843

As is, StreetAddress::US is converting the output to: 11081 N State Highway 2777, Hayward, WI 54843. We are expecting: 11081 N State Highway 27/77, Hayward, WI 54843. PR includes fix and test case.