Tagged Questions

77
votes
11answers
18k views

Good Python modules for fuzzy string comparison?

I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
22
votes
3answers
1k views

Fuzzy Regular Expressions

In my work I have with great results used approximate string matching algorithms such as Damerau–Levenshtein distance to make my code less vulnerable to spelling mistakes. Now I have a need to match ...
4
votes
2answers
136 views

difflib on Ruby

Is there a library similar to Python's difflib on Ruby? Particularly, I need one that has a method similar to difflib.get_close_matches. Any recommendations?
1
vote
3answers
169 views

Is there any implementation of this string matching method in python?

I am trying to work out which entries in my data store are near-duplicates using approximate string matching. Is there any implementation of the following approach in python, or do i need to try and ...