Function winnow::sequence::delimited

source ·
pub fn delimited<I, O1, O2, O3, E: ParseError<I>, F, G, H>(
    first: F,
    second: G,
    third: H
) -> impl FnMut(I) -> IResult<I, O2, E>where
    I: Stream,
    F: Parser<I, O1, E>,
    G: Parser<I, O2, E>,
    H: Parser<I, O3, E>,
Expand description

Apply three parsers, only returning the output of the second.

Arguments

  • first The first parser to apply and discard.
  • second The second parser to apply.
  • third The third parser to apply and discard.

Example

use winnow::sequence::delimited;
use winnow::bytes::tag;

let mut parser = delimited(tag("("), tag("abc"), tag(")"));

assert_eq!(parser("(abc)"), Ok(("", "abc")));
assert_eq!(parser("(abc)def"), Ok(("def", "abc")));
assert_eq!(parser(""), Err(ErrMode::Backtrack(Error::new("", ErrorKind::Tag))));
assert_eq!(parser("123"), Err(ErrMode::Backtrack(Error::new("123", ErrorKind::Tag))));