Module nom::regexp::bytes[][src]

This is supported on crate feature regexp only.

Regular expression parser combinators for bytes.

Functions

re_capturealloc

Compares the input with a regular expression and returns the capture groups of the first match in a Vec.

re_capturesalloc

Compares the input with a regular expression and returns the capture groups of all matches in a nested Vec.

re_find

Compares the input with a regular expression and returns the first match.

re_match

Compares the input with a regular expression and returns the whole input if a match is found.

re_matchesalloc

Compares the input with a regular expression and returns all matches in a Vec.