RustVerbalExpressions

Verbal Expressions implementation for Rust. See Verbal Expressions for detail.

Example

```rust extern crate verbalexpressions; use verbalexpressions::Verex;

fn main() { let v = Verex::new() .startofline() .then("http") .maybe("s") .then("://") .maybe("www.") .anythingbutnot(" ") .endofline();

let url = "https://www.google.com";

assert!(v.is_match(url)); } ```

License

Copyright (c) 2014 woxtu

Licensed under the MIT license.