textdistance.rs, Rust crate with 25+ algorithms for comparing strings. Now with no_std support!
textdistance.rs, Rust crate with 25+ algorithms for comparing strings. Now with no_std support!
π¦π Rust library to compare strings (or any sequences). 25+ algorithms, pure Rust, common interface, Unicode support. - life4/textdistance.rs
I like being std free
7 1 ReplyToken-based string distances looks like exactly what I need for my current side project - I'm using Levenshtein but I should be comparing based on words, not characters.
I just need to figure out which (if any) of these does what I need.
Edit: looks like the Python version has that information: https://github.com/life4/textdistance?tab=readme-ov-file#algorithms
4 0 ReplyIn Python version, pass the list of words directly into the algorithm, and it will compare words. In Rust version, use Algorithm.for_words:
https://docs.rs/textdistance/1.1.0/textdistance/trait.Algorithm.html#method.for_words
2 0 Reply