Module nom::regexp::bytes

source ·
Available on crate feature regexp only.
Expand description

Regular expression parser combinators for bytes.

Functions

  • Compares the input with a regular expression and returns the capture groups of the first match in a Vec.
  • Compares the input with a regular expression and returns the capture groups of all matches in a nested Vec.
  • Compares the input with a regular expression and returns the first match.
  • Compares the input with a regular expression and returns the whole input if a match is found.
  • Compares the input with a regular expression and returns all matches in a Vec.