fuzzy-regex 0.1.0

High-performance fuzzy regular expression engine combining regex with Damerau-Levenshtein distance
Documentation
1
2
3
4
5
6
7
use fuzzy_regex::FuzzyRegex;

fn main() {
    // Check prefilter for "hello" with 2 edits
    let re = FuzzyRegex::new("(?:hello){e<=2}").unwrap();
    println!("{:#?}", re);
}