Module nom::regexp::bytes [−][src]
This is supported on crate feature
regexp only.Expand description
Regular expression parser combinators for bytes.
Functions
| re_capture | allocCompares the input with a regular expression and returns
the capture groups of the first match in a |
| re_captures | allocCompares the input with a regular expression and returns
the capture groups of all matches in a nested |
| 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 | allocCompares the input with a regular expression and returns all matches in a |