[][src]Macro nom::re_matches

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

re_matches!(regexp) => &[T] -> IResult<&[T], Vec<&[T]>> Returns all the matched parts.

Requires the regexp feature.