| Crates.io | soundex-rs |
| lib.rs | soundex-rs |
| version | 0.1.8 |
| created_at | 2021-12-01 14:15:46.308483+00 |
| updated_at | 2023-12-08 02:39:04.824162+00 |
| description | A library that calculates soundex value. |
| homepage | https://github.com/bestgopher/soundex-rs |
| repository | https://github.com/bestgopher/soundex-rs |
| max_upload_size | |
| id | 490275 |
| size | 7,711 |
A library that calculates soundex value.
[dependencies]
soundex-rs = "^0"
use soundex_rs::Soundex;
let value = "hello world".soundex();
assert_eq!(value, "H464".to_string());