5 releases
0.2.0 | Mar 25, 2023 |
---|---|
0.1.3 | Mar 9, 2022 |
0.1.2 | Mar 9, 2022 |
0.1.1 | Oct 7, 2020 |
0.1.0 | Oct 7, 2020 |
#493 in Text processing
455 downloads per month
Used in 7 crates
(2 directly)
12KB
173 lines
Diacritics
This is a rust crate for removing diacritics from a string. It can be useful when wanting to standardize some material to make it easier to search, among other things.
Example
let string = "TÅRÖÄÆØ";
let new_string = diacritics::remove_diacritics(string);
assert_eq!("TAROAAO", new_string);