koelner-phonetik

Crates.iokoelner-phonetik
lib.rskoelner-phonetik
version0.1.0
sourcesrc
created_at2020-12-02 20:05:09.045457
updated_at2020-12-02 20:05:09.045457
descriptionkoelner_phonetik or cologne phonetics is a phonetic algorithm like soundex, but specialized for german words.
homepage
repositoryhttps://github.com/zigapeda/koelner-phonetik
max_upload_size
id318995
size17,522
(zigapeda)

documentation

README

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

Commit count: 4

cargo fmt