#word #iterator #string

word_iter

简单遍历字符串中所有单词的迭代器

3个不稳定版本

0.2.1 2022年3月13日
0.2.0 2022年2月17日
0.1.0 2021年2月22日

#1240 in Rust模式

Download history 5/week @ 2024-03-11 7/week @ 2024-03-25 47/week @ 2024-04-01 1/week @ 2024-04-15 5/week @ 2024-04-22 10/week @ 2024-04-29 9/week @ 2024-05-13 15/week @ 2024-05-20 19/week @ 2024-05-27 10/week @ 2024-06-03 27/week @ 2024-06-10 37/week @ 2024-06-17 20/week @ 2024-06-24

95 个月下载量
wallust 中使用

MIT 许可证

4KB
77

Word Iter

一个简单的Rust库,用于遍历给定字符串中的所有单词

用法

// by using this line, you can call the .words() method in strings
use word_iter::*;

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

现在你可以做些有趣的事情,比如这样

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

这个库的性能如何?

是的。

我在《爱丽丝梦游仙境》全文(148574字节,27345个单词)上运行了一个简单的基准测试,在2019款MacBook Pro(2.6 GHz 6核Intel Core i7)上耗时598μs。

为什么创建这个库?

创建这个库是为了帮助进行文档分析,特别是与搜索引擎相关的研究。

无运行时依赖