Expand description
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
.