pub fn remove_diacritics(string: &str) -> String
Expand description

Used for removing diacritics from a string.

Examples

let string = "TÅRÖÄÆØ";
let new_string = diacritics::remove_diacritics(string);

assert_eq!("TAROAAO", new_string);