tree: 6054ab524fad192b5692cc382bb2510a7c43cbef [path history] [tgz]
  1. example/
  2. lib/
  3. tool/
  4. .analysis_options.yaml
  5. .gitignore
  6. .travis.yml
  7. BUILD.gn
  8. CHANGELOG.md
  9. LICENSE
  10. pubspec.yaml
  11. README.md
edit_distance/README.md

edit_distance

Build Status

Implementation of string distance algorithms.

Description

Edit distances algorithms for fuzzy matching. Specifically, this library provides:

Examples

Levenshtein d = new Levenshtein();
print(d.distance('witch', 'kitsch')); // 2