7 releases
0.2.0 | Aug 21, 2022 |
---|---|
0.1.5 | Aug 7, 2022 |
0.1.1 | May 30, 2022 |
#1697 in Text processing
545KB
246 lines
Rsplitter Documentation
Introduction
Rsplitter is a library for splitting a words into a joint list of words.
Installation
cargo install rsplitter
Usage
use rsplitter::split;
fn main() {
let words = split("rustisgreat");
println!("{:?}", words);
}