nom_regex

Module str

Source
Expand description

Regular expression parser combinators for strings.

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.