hassansin / parse-address

US Street Address Parser
http://hassansin.github.io/parse-address/
Other
157 stars 81 forks source link

Ignoring alphabets from the home number "21B-Mercury-Drive-Londonderry-NH-03053" #39

Open arunpugahz opened 2 years ago

arunpugahz commented 2 years ago

I tried to parse 21B-Mercury-Drive-Londonderry-NH-03053

result:

  number: '21',
  street: 'B-Mercury',
  type: 'Dr',
  city: 'Londonderry',
  state: 'NH',
  zip: '03053'
}

21B is the number of the property. Since the "B" is attached to the street, am not able to solve my problem.

Any suggestions?