string_parser

Rust string parsing crate

Doc : https://crates.io/crates/string-parser

Usage :

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

fn endfilter(c : Vec) -> bool{
if c.last().unwrap()== &'\'' { return true; } else { return false; }
} //can also use closures let callback = |s : String| { assert
eq!(String::from("foo"), s); };

stringparser("./text", "'", endfilter, callback).unwrap(); ```