10个版本
0.2.0 | 2020年2月17日 |
---|---|
0.1.7 | 2018年5月9日 |
0.1.6 | 2017年6月8日 |
0.1.4 | 2017年4月25日 |
0.0.1 | 2017年4月8日 |
#1198 in 文本处理
每月52次下载
27KB
792 行
cabocha-rs
示例
cargo run --example test
用法
[dependencies]
cabocha = "*"
use cabocha::parser::Parser;
fn main() {
let parser = Parser::new("");
let sentence = "我輩は猫である。";
let mut tree = parser.parse_to_tree(sentence);
println!("{}", tree.to_string(cabocha::consts::CABOCHA_FORMAT::TREE));
}
许可协议
依赖
~43KB