#splitter #words #split #text

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

#1955 in Text processing

Download history 8/week @ 2024-09-23 3/week @ 2024-09-30 35/week @ 2024-12-02 62/week @ 2024-12-09 8/week @ 2024-12-16

105 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