Skip to content

bestgopher/soundex-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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