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

Regular expression parser combinators for bytes.

Functions

re_capture

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

re_captures

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_matches

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