Crate soundex_rs

source ·
Expand description

soundex_rs is a library that calculates the words’ soundex.

References

https://support.esri.com/en/technical-article/000003773

Features

featuredescription
defaultThe result retains the first four characters of the soundex value|
fullThe result retains the complete value of soundex

Examples

use soundex_rs::Soundex;
println!("{}", "hello world".soundex());

Traits

Functions

  • equal compares two strings’ soundex value, if the result is equal, returns true.