Hi
I have 2 datasets containing addresses and want to check if they are matching or not.
Set 1:
| Location | City | Cost |
| 110 Ave N | Denver | 100 |
| 76 Adelaide Street | Buffalo | 50 |
Set 2:
| Location | Quantity |
| 110 Avenue North, Denver | 5 |
| 76 Adelaide ST,Buffalo,NY | 10 |
The words are not an exact match between the data set.
For Ex: one set address is ST whereas other one its Street. Same for Ave(Avenue) etc
Is there any way to match this quickly without using Fuzzy match?
I am planning to split the city into a different column to only extract the address and street name.
Thanks
Taher