Fuzzy Matcher

A fuzzy matching algorithm in Rust!

Usage

In your Cargo.toml add the following:

toml [dependencies] fuzzy_matcher = "*"

Here are some code example:

```rust use fuzzymatcher::{fuzzymatch, fuzzy_matcher};

asserteq!(None, fuzzymatch("abc", "abx")); assert!(fuzzymatch("axbycz", "abc").issome()); assert!(fuzzymatch("axbycz", "xyz").issome());

let (score, indices) = fuzzyindices("axbycz", "abc").unwrap(); asserteq!(indices, [0, 2, 4]); ```

More example

echo "axbycz" | cargo run --example "abc" and check what happens.

About the Algorithm