Function nom::multi::many1

source ·
pub fn many1<I, O, E, F>(f: F) -> impl Fn(I) -> IResult<I, Vec<O>, E>
where I: Clone + PartialEq, F: Fn(I) -> IResult<I, O, E>, E: ParseError<I>,
Expand description

Runs the embedded parser until it fails and returns the results in a Vec. Fails if the embedded parser does not produce at least one result.

§Arguments

  • f The parser to apply.
use nom::multi::many1;
use nom::bytes::complete::tag;

fn parser(s: &str) -> IResult<&str, Vec<&str>> {
  many1(tag("abc"))(s)
}

assert_eq!(parser("abcabc"), Ok(("", vec!["abc", "abc"])));
assert_eq!(parser("abc123"), Ok(("123", vec!["abc"])));
assert_eq!(parser("123123"), Err(Err::Error(("123123", ErrorKind::Tag))));
assert_eq!(parser(""), Err(Err::Error(("", ErrorKind::Tag))));