Skip to main content
Question

Fuzzy matching switched words

  • May 15, 2018
  • 1 reply
  • 18 views

Hi all,

I want to use FuzzyStringComparer but I'm wandering is it possible to force it to rate sth like this higher?

 

eg. Pizzeria Saracino <-> Saracino Pizzeria => 0.47

So the words are correct but the order is wrong, and I need to know if the name is basically the same. In this case it is the same for me. Is there possibility to configure this transformer to check words in string separately?

Thanks in advance!

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

david_r
Celebrity
  • 8394 replies
  • May 15, 2018

I would consider splitting all the words in both the strings and check if all the words in string 1 occur in string 2, which would indicate a certain ranking.