string_parser

Rust string parsing crate

Doc : https://docs.rs/string-parser/0.1.0/string_parser/

Usage :

```Rust extern crate stringparser; use stringparser::string_parser;

fn end_filter(c : Vec) -> bool{
if c.last().unwrap() == &'\'' { return true; } else { return false; }
}

fn callback(s : String){ asserteq!(String::from("foo"), s); } stringparser("./text", "'", end_filter, callback).unwrap(); ```