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
- Host: GitHub
- URL: https://github.com/bestgopher/soundex-rs
- Owner: bestgopher
- License: mit
- Created: 2021-12-01T09:27:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-06-27T08:55:18.000Z (12 months ago)
- Last Synced: 2025-09-08T22:43:26.127Z (9 months ago)
- Topics: rust, soundex, soundex-algorithm, string
- Language: Rust
- Homepage: https://docs.rs/soundex-rs
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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