soundex-rs
A library that calculates soundex value.
install
toml
[dependencies]
soundex-rs = "^0"
usage
```rust
use soundex_rs::Soundex;
let value = "hello world".soundex();
asserteq!(value, "H464".tostring());
```
features
- default: The result retains the first four characters of the soundex value
- full: The result retains the complete value of soundex
reference
- https://support.esri.com/en/technical-article/000003773