edit_distance icon indicating copy to clipboard operation
edit_distance copied to clipboard

Implementation of string distance algorithms in Dart

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