Skip to content

A collection of algorithms for measuring the distance between two strings.

License

Notifications You must be signed in to change notification settings

Okroshiashvili/text_distance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cargo Build & Test

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);
}

About

A collection of algorithms for measuring the distance between two strings.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages