mr-regex: Minimalist ASCII Regex-engine with 300 lines of Rust

Build Status

Examples

You can use a convience one line match function.

rust regex_match("(zz)+", "zz")

Or a more formal interface

rust let r = Regex::new("(zz)+".as_bytes()).unwrap(); r.is_match("zz".as_bytes())