Fuzzy string matching like a boss. It uses Levenshtein Distance to calculate the differences between sequences in a simple-to-use package.
Note: This project was originally named fuzzyrusty
. Someone else cloned and published it to crates.io https://crates.io/crates/fuzzyrusty. We do not control that crate. This is why we have changed the name.
fuzzywuzzy
is currently available through GitHub or crates.io.
For the latest stable releas, add this to your Cargo.toml
:
toml
[dependencies]
fuzzywuzzy = "*"
For the bleeding edge, you can pull directly from master:
toml
[dependencies]
fuzzywuzzy = { git = "https://github.com/logannc/fuzzyrusty", branch = "master" }
Clone the repository and run $ cargo doc --open
.
rust
assert_eq!(fuzz::ratio("this is a test", "this is a test!"), 97);
rust
assert_eq!(fuzz::partial_ratio("this is a test", "this is a test!"), 100);
rust
assert_eq!(fuzz::ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear"), 91);
assert_eq!(fuzz::token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear", true, true), 100);
rust
assert_eq!(fuzz::ratio("fuzzy was a bear", "fuzzy fuzzy was a bear"), 84);
assert_eq!(fuzz::token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear", true, true), 100);
rust
assert_eq!(process::extract_one(
"cowboys",
&["Atlanta Falcons", "Dallas Cowboys", "New York Jets"],
&utils::full_process,
&fuzz::wratio,
0,
), Some(("Dallas Cowboys".to_string(), 90)));