human_regex 0.3.0

A regex library for humans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # A Cookbook of Common Tasks
//! ## Matching a date
//! ```rust
#![doc = include_str ! ("../examples/match_date.rs")]
//! ```
//! ## Matching and Capturing HTML Tags
//! ```rust
#![doc = include_str ! ("../examples/match_html_tags.rs")]
//! ```
//! ## Removing stop words from a passage
//! ```rust
#![doc = include_str ! ("../examples/remove_stop_words_with_regex.rs")]
//! ```
//! ## Matching and Capturing an MLA-Formatted Citation
//! ```rust
#![doc = include_str ! ("../examples/mla_citation.rs")]
//! ```