Kölner Phonetik or cologne phonetics is a phonetic algorithm like soundex, but specialized for german words.
Detailed description can be found on Wikipedia (or in German)
Add this to your Cargo.toml
:
toml
[dependencies]
koelner-phonetik = "0.1"
This example shows how to use Kölner Phonetik: ```rust use koelner_phonetik;
let rust = String::from("Rust"); let phonetic = koelner_phonetik::calculate(&rust);
assert_eq!(phonetic, "782") ```
koelner-phonetik
is distributed under the terms of MIT License