4 releases (breaking)

Uses old Rust 2015

0.4.0 Jul 10, 2016
0.3.0 Jun 30, 2016
0.2.0 Jun 28, 2016
0.1.0 Jun 27, 2016

#2207 in Algorithms

Download history 2146/week @ 2024-07-21 1652/week @ 2024-07-28 1467/week @ 2024-08-04 1541/week @ 2024-08-11 1774/week @ 2024-08-18 1340/week @ 2024-08-25 1753/week @ 2024-09-01 1223/week @ 2024-09-08 1550/week @ 2024-09-15 1559/week @ 2024-09-22 1730/week @ 2024-09-29 1316/week @ 2024-10-06 3029/week @ 2024-10-13 2380/week @ 2024-10-20 2351/week @ 2024-10-27 2439/week @ 2024-11-03

10,313 downloads per month
Used in 21 crates (15 directly)

Apache-2.0

19KB
319 lines

distance

This is a rust library for approximate string matching algorithms.
Possible applications for this are fuzzy string searching, spell checkers, spam filters, etc.

Algorithms

All algorithms support UTF-8 encoded strings.

Add as dependency

distance is available on crates.io.

[dependencies]
distance = "0.4"

Usage

use distance::*; 

// Levenshtein distance
let distance = levenshtein("hannah", "hanna");   
assert_eq!(1, distance);

// Damerau Levenshtein distance
let distance = damerau_levenshtein("hannah", "hannha");   
assert_eq!(1, distance);

// Hamming distance
let distance = hamming("karolin", "kathrin").unwrap();   
assert_eq!(3, distance);

// Sift3 distance
let distance = sift3("hannah", "hanna");
assert_eq!(0.5, distance);

No runtime deps