regex
=====
A Rust library for parsing, compiling, and executing regular expressions.
[](https://travis-ci.org/rust-lang/regex)
[Documentation](http://doc.rust-lang.org/regex)
Add this to your `Cargo.toml`:
```toml
[dependencies]
regex = "0.1.0"
```
and this to your crate root:
```rust
extern crate regex;
```