soundex-rs

Crates.iosoundex-rs
lib.rssoundex-rs
version0.1.8
sourcesrc
created_at2021-12-01 14:15:46.308483
updated_at2023-12-08 02:39:04.824162
descriptionA library that calculates soundex value.
homepagehttps://github.com/bestgopher/soundex-rs
repositoryhttps://github.com/bestgopher/soundex-rs
max_upload_size
id490275
size7,711
bestgopher (bestgopher)

documentation

README

soundex-rs

A library that calculates soundex value.

install

[dependencies]
soundex-rs = "^0"

usage

use soundex_rs::Soundex;

let value = "hello world".soundex();
assert_eq!(value, "H464".to_string());

features

  • default: The result retains the first four characters of the soundex value
  • full: The result retains the complete value of soundex

reference

Commit count: 18

cargo fmt