An open API service indexing awesome lists of open source software.

https://github.com/bestgopher/soundex-rs

Get soundex for string
https://github.com/bestgopher/soundex-rs

rust soundex soundex-algorithm string

Last synced: 9 months ago
JSON representation

Get soundex for string

Awesome Lists containing this project

README

          

# 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();
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
- https://support.esri.com/en/technical-article/000003773