9 个版本
0.1.8 | 2023年12月8日 |
---|---|
0.1.7 | 2022年2月11日 |
0.1.6 | 2022年1月9日 |
0.1.3 | 2021年12月14日 |
#433 在 文本处理
每月 37 次下载
7KB
119 行
soundex-rs
计算 soundex 值的库。
安装
[dependencies]
soundex-rs = "^0"
使用方法
use soundex_rs::Soundex;
let value = "hello world".soundex();
assert_eq!(value, "H464".to_string());
特性
- 默认:结果保留 soundex 值的前四个字符
- 完整:结果保留 soundex 值的完整值
参考
lib.rs
:
soundex_rs 是一个计算单词的 soundex 的库。
参考
https://support.esri.com/en/technical-article/000003773
特性
特性 | 描述 |
---|---|
默认 | 结果保留 soundex 值的前四个字符| |
完整 | 结果保留 soundex 值的完整值 |
示例
use soundex_rs::Soundex;
println!("{}", "hello world".soundex());