bestgopher / soundex-rs

Get soundex for string

Home Page:https://docs.rs/soundex-rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Get soundex for string

https://docs.rs/soundex-rs

License:MIT License


Languages

Language:Rust 100.0%