Crates.io | minigrep_xiaoai |
lib.rs | minigrep_xiaoai |
version | 0.1.1 |
source | src |
created_at | 2024-10-13 08:46:55.683566 |
updated_at | 2024-10-13 08:51:13.229266 |
description | 一个简单的命令行工具,用于在文件中搜索字符串。 |
homepage | |
repository | https://github.com/rust-lang/cargo |
max_upload_size | |
id | 1407176 |
size | 6,733 |
minigrep
是一个简单的命令行工具,用于搜索文件中的文本。
let query = "duct";
let contents = "\
Rust:
safe, fast, productive.
Pick three.
Duct tape.";
assert_eq!(vec!["safe, fast, productive."], minigrep::search(query, contents));