strsim 0.1.1

Implementations of string similarity metrics. Currently includes Hamming, Levenshtein, Jaro, and Jaro-Winkler.
docs.rs failed to build strsim-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: strsim-0.11.1

strsim-rs Build Status

Rust implementations of string similarity metrics. Best efforts will be made to stay up-to-date with Rust nightly. Currently includes:

Installation

# Cargo.toml
[dependencies]
strsim = "0.1.1"

Usage

extern crate strsim;

use strsim::{hamming, levenshtein, jaro, jaro_winkler};
use std::num::Float;

fn main() {
    match hamming("hamming", "hammers") {
        Ok(distance) => assert_eq!(3, distance),
        Err(why) => panic!("{:?}", why)
    }
    
    assert_eq!(3, levenshtein("kitten", "sitting"));

    assert!((0.392 - jaro("Friedrich Nietzsche", "Jean-Paul Sartre")).abs() < 
            0.001);
    
    assert!((0.911 - jaro_winkler("cheeseburger", "cheese fries")).abs() < 
            0.001);
}

Todo's

Version

0.1.1

License

MIT