6 个版本

0.1.8 2020 年 7 月 18 日
0.1.7 2020 年 7 月 12 日

#10#true

Download history 1/week @ 2024-04-21 103/week @ 2024-07-28

每月 103 次下载
2 个包中使用

MIT/Apache

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 是一个包,用于在源文件中查找标记并解析其内部内容

无运行时依赖