#words #split #text #splitter

rsplitter

Splitter is a tool to split words from text that contains no spaces

7 releases

0.2.0 Aug 21, 2022
0.1.5 Aug 7, 2022
0.1.1 May 30, 2022

#1616 in Text processing

40 downloads per month

MIT license

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);
}

Dependencies