fuzzy-regex 0.1.0

High-performance fuzzy regular expression engine combining regex with Damerau-Levenshtein distance
Documentation
# Match Results

Methods available on match results.

## Basic Methods

```rust
use fuzzy_regex::FuzzyRegex;

let re = FuzzyRegex::new("(?:hello){e<=1}").unwrap();
let m = re.find("say hello world").unwrap();

// Get matched string
m.as_str()           // &str: "hello"
m.start()            // usize: 4 (byte position)
m.end()              // usize: 9
m.len()              // usize: 5
m.is_empty()         // bool: false
```

## Similarity

```rust
// Similarity score 0.0 - 1.0
m.similarity()       // f32: 1.0 = exact, lower = more errors
```

## Partial Match

```rust
// Check if match reaches end of input (for partial matching)
m.partial()         // bool: true if match at end
```

## Match as Different Types

```rust
let m = re.find("hello world").unwrap();

// Get raw bytes
let bytes = m.as_bytes();

// Get range
let range = m.range(); // Range<usize>
```

## Iterating Matches

```rust
let re = FuzzyRegex::new(r"\w+").unwrap();

for m in re.find_iter("hello world") {
    println!("{}", m.as_str());
}
```

## Match Iteration with Positions

```rust
let re = FuzzyRegex::new("(?:foo){e<=1}").unwrap();

for m in re.find_iter("foo fxo fxoo") {
    println!("'{}' at [{}, {})", m.as_str(), m.start(), m.end());
}
```