approx-string-match-js icon indicating copy to clipboard operation
approx-string-match-js copied to clipboard

Fast approximate string matching library for JavaScript

Results 2 approx-string-match-js issues
Sort by recently updated
recently updated
newest added

Reading the documentation for https://pypi.org/project/editdistance/, I came across a link to [another paper by Hyyro](https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.19.7158&rep=rep1&type=pdf) which contains an alternate explanation of the algorithm. Add this to the comments as an...

I tried calling `search("before quote after", "...quote...", 6)`, and I got this output: ```json [ { "start": 4, "end": 12, "errors": 6 }, { "start": 4, "end": 13, "errors": 6...