Crates.io | koelner-phonetik |
lib.rs | koelner-phonetik |
version | 0.1.0 |
source | src |
created_at | 2020-12-02 20:05:09.045457 |
updated_at | 2020-12-02 20:05:09.045457 |
description | koelner_phonetik or cologne phonetics is a phonetic algorithm like soundex, but specialized for german words. |
homepage | |
repository | https://github.com/zigapeda/koelner-phonetik |
max_upload_size | |
id | 318995 |
size | 17,522 |
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
:
[dependencies]
koelner-phonetik = "0.1"
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")
koelner-phonetik
is distributed under the terms of MIT License