6 个版本
0.1.8 |
|
---|---|
0.1.7 |
|
#10 在 #true
每月 103 次下载
在 2 个包中使用
10KB
166 行
string_parser
Rust 字符串解析包
文档:https://crates.io/crates/string-parser
用法
extern crate string_parser;
use string_parser::string_parser;
fn end_filter(c : Vec<char>) -> bool{
if c.last().unwrap()== &'\'' {
return true;
}
else {
return false;
}
}
//can also use closures
let callback = |s : String| {
assert_eq!(String::from("foo"), s);
};
string_parser("./text", "'", end_filter, callback).unwrap();
lib.rs
:
string_parser
string_parser 是一个包,用于在源文件中查找标记并解析其内部内容