5 releases (breaking)
0.5.0 | Apr 28, 2023 |
---|---|
0.4.0 | Apr 6, 2023 |
0.3.0 | Apr 4, 2023 |
0.2.0 | Mar 29, 2023 |
0.1.0 | Mar 27, 2023 |
#1016 in Text processing
33KB
359 lines
Text Distance
⚠ WARNING: This is a work in progress. The API is not optimized and stable yet.
Side Note: I've started this project to learn Rust. If you see something that is very odd or is in dire need of improvement please let me know!
Text Distance - A collection of algorithms for measuring the distance between two strings.
Usage
Add this to your Cargo.toml
:
[dependencies]
text_distance = "0.2.0"
or in terminal run
cargo add text_distance
Example
use text_distance::Levenshtein;
fn main() {
let lev = Levenshtein {s: "test".to_string(), t: "book".to_string()};
let plain_distance = lev.distance();
let normalized_distance = lev.normalized_distance();
let similarity = lev.similarity();
let normalized_similarity = lev.normalized_similarity();
println!("plain_distance: {}", plain_distance);
println!("normalized_distance: {}", normalized_distance);
println!("similarity: {}", similarity);
println!("normalized_similarity: {}", normalized_similarity);
}