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

Libraries

edit_distance
Edit distances algorithms for fuzzy matching