1 个不稳定版本
0.1.0 | 2024年4月19日 |
---|
#11 in #syllable
6KB
hyphenator
hyphenator 是一个简单的 Rust 库,用于将单词分割为音节,采用简单的元音-辅音组合方法来分割单词。
用法
要使用 hyphenator,将以下内容添加到你的 Cargo.toml
[dependencies]
hyphenator = "0.1.0"
示例
use hyphenator::split;
fn main() {
let word = "Hyphenator";
let results = split(word);
println!("{:?}", results[0]);
}