1 unstable release
0.1.0 | Dec 2, 2020 |
---|
#1140 in Text processing
17KB
285 lines
Kölner Phonetik
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)
Usage
Add this to your Cargo.toml
:
[dependencies]
koelner-phonetik = "0.1"
Example
This example shows how to use Kölner Phonetik:
use koelner_phonetik;
let rust = String::from("Rust");
let phonetic = koelner_phonetik::calculate(&rust);
assert_eq!(phonetic, "782")
License
koelner-phonetik
is distributed under the terms of MIT License