Module posix_regex::compile

source ·
Expand description

The regex “compiler”, which parses the regex itself. Produces a matcher ready to match input.

Structs

A regex builder struct
Repetition bounds, for example + is (1, None), and ? is (0, Some(1))

Enums

An item inside square brackets, like [abc] or [[:digit:]]
An error that occurred while compiling the regex
A single “compiled” token, such as a . or a character literal