word_iter 0.1.0

Simple Iterator over all words in a string
Documentation

Word Iter

simple rust library to iterate over all words in a given string

Usage

use word_iter::*;

let iter_over_words = "hello world".words();

Now you can do fun stuff like this:

for word in iter_over_words {
    println!("{}", word);
}