taleinat / fuzzysearch

Find parts of long text or data, allowing for some changes/typos.
MIT License
301 stars 26 forks source link

Can't find find_near_matches_with_ngrams() in code #10

Closed omriallouche closed 7 years ago

omriallouche commented 7 years ago

Function is mentioned in the documentation, but doesn't seem to appear in the source code.

taleinat commented 7 years ago

Indeed! That was changed in version 0.3 but the docs weren't updated. I'll update the docs appropriately.

If you're looking for specific ngram-based search functions, you can try one of these:

(The difference between the "generic" and "levenshtein" searches are that "levenshtein" only receives a max Levenshtein distance, while "generic" can be given any of the possible match criteria in any combination: max Levenshtein distance, max deletions, max insertions and max subsitutions.)

Thanks!

taleinat commented 7 years ago

Docs updated!