
Fuzzy Compare
Rust library for fuzzy string matching using Levenshtein distance. Returns results with similarity coefficient (0.0 = 0%, 1.0 = 100%) sorted from best to worst match. Supports deep word search.
Features:
- Performance: O(n × L²) where L is average string length.
- Case-insensitive: With automatic lowercase conversion.
- Safe: Handles empty strings, division by zero.
- Generic: Works with any
Clone type via closure.
- Sorting: Descending sort by coefficient.
Examples:
Deep compare:
fn main() {
let s1 = "hello world";
let s2 = "hello my friend";
let min_coef = 0.4;
let coef = fuzzy_cmp::deep_compare(s1, s2, min_coef);
println!("Coefficient: {min_coef}");
println!("String1: {s1}");
println!("String2: {s2}");
println!("Result: {coef} or {:.2}%", coef * 100.0);
}
Deep search:
fn main() {
let files = vec![
"Metallica - Master of Puppets [Live 2024].mp3",
"Metallica - Master of Pupets [Remix].mp3",
"Metallica Nothing Else Matters [Live].mp3",
"Led Zeppelin - Stairway to Heaven.mp3"
];
let query = "metallica puppets";
let min_coef = 0.45;
let results = fuzzy_cmp::search(&files, query, min_coef, true);
println!("Deep file search (coef {min_coef}):");
println!("Search files: {files:#?}");
println!("Search query: {query}");
println!("Results: ");
for (coef, file) in results.iter().take(3) {
println!(" {:.2}% → {}", coef * 100.0, file);
}
}
Search struct:
#[derive(Debug, Clone, Eq, PartialEq)]
struct Person {
name: String,
age: u32,
}
fn main() {
let people = vec![
Person { name: "Alice".to_owned(), age: 30 },
Person { name: "Bob".to_owned(), age: 25 },
Person { name: "Alicia".to_owned(), age: 28 },
];
let results = fuzzy_cmp::search_filter(&people, "Ali", 0.6, false, |p: &Person| &p.name);
let best = &results[0];
println!("Best result: {:.2}% -> {:?}", best.0 * 100.0, best.1);
assert_eq!(best.1, Person { name: "Alice".to_owned(), age: 30 });
}
Licensing:
Distributed under the MIT license.
Feedback:
You can find me here, also see my channel.
I welcome your suggestions and feedback!
Copyright (c) 2025 Bulat Sh. (fuderis)