Expand description
soundex_rs is a library that calculates the words’ soundex.
§References
https://support.esri.com/en/technical-article/000003773
§Features
feature | description |
---|---|
default | The result retains the first four characters of the soundex value| |
full | The result retains the complete value of soundex |
§Examples
use soundex_rs::Soundex;
println!("{}", "hello world".soundex());
Traits§
Functions§
- equal
- equal compares two strings’ soundex value, if the result is equal, returns true.