2 releases

Uses old Rust 2015

0.1.1 Jul 21, 2018
0.1.0 Nov 1, 2015

#239 in Internationalization (i18n)

Download history 270/week @ 2024-11-15 312/week @ 2024-11-22 329/week @ 2024-11-29 251/week @ 2024-12-06 261/week @ 2024-12-13 114/week @ 2024-12-20 55/week @ 2024-12-27 204/week @ 2025-01-03 206/week @ 2025-01-10 248/week @ 2025-01-17 206/week @ 2025-01-24 385/week @ 2025-01-31 293/week @ 2025-02-07 434/week @ 2025-02-14 365/week @ 2025-02-21 506/week @ 2025-02-28

1,648 downloads per month
Used in 2 crates

MIT license

36KB
178 lines

rust-tinysegmenter

Crates.io

Rust implementation of TinySegmenter, which is a compact Japanese tokenizer.

Install

Adding the following to the Cargo.toml in your project:

[dependencies]
tinysegmenter = "0.1"

and import using extern crate:

extern crate tinysegmenter;

Usage

let tokens = tinysegmenter::tokenize("私の名前は中野です");
println!("{}", &tokens.join("|")); // 私|の|名前|は|中野|です

License

Copyright (c) 2015 woxtu

Licensed under the MIT license.

Dependencies

~22KB