2 unstable releases
0.2.0 | Aug 19, 2024 |
---|---|
0.1.0 | Aug 19, 2024 |
#716 in Algorithms
70 downloads per month
10KB
153 lines
rizzer
Rust Fuzzy Matching Library
Algorithm Description
This library implements a fuzzy string matching algorithm based on the algorithm used by fzf. A very poor port for now, but I'll try to improve it over time.
The algorithm works as follows:
- It calculates bonus scores for character positions based on their context (e.g., after whitespace or punctuation).
- It builds a score matrix using dynamic programming, considering matches, gaps, and bonuses.
- It performs backtracing to find the best matching subsequence.
- The algorithm supports case-insensitive matching and Unicode normalization.
The matching process assigns higher scores to continuous matches and matches at word boundaries, making it particularly effective for searching within longer texts or lists of items.
API Description
The library exposes two main functions:
-
fuzzy_match(text: &str, pattern: &str, case_sensitive: bool, normalize: bool) -> (isize, isize, i32, Vec<usize>)
- Performs a full fuzzy match between
text
andpattern
. - Returns a tuple containing:
- Start index of the match
- End index of the match
- Match score
- Vector of matched positions
- Performs a full fuzzy match between
-
fuzzy_match_score(text: &str, pattern: &str, case_sensitive: bool, normalize: bool) -> i32
- A simplified version that only returns the match score.
Both functions accept the following parameters:
text
: The text to search inpattern
: The pattern to search forcase_sensitive
: Whether the match should be case-sensitivenormalize
: Whether to apply Unicode normalization
Use these functions to implement fuzzy searching in your Rust applications. The best use I've found is for matching on lists of strings for autocomplete, result filtering etc.
Dependencies
~795KB
~28K SLoC