[][src]Macro nom::re_bytes_capture

macro_rules! re_bytes_capture {
    ($i:expr, $re:expr) => { ... };
}
This is supported on crate features regexp and alloc only.

re_bytes_capture!(regexp) => &[T] -> IResult<&[T], Vec<&[T]>> Returns the capture groups of the first match.

Requires the regexp feature.