[][src]Function gchemol_parser::parsers::separated_pair

pub fn separated_pair<I, O1, O2, O3, E, F, G, H>(
    first: F,
    sep: G,
    second: H
) -> impl Fn(I) where
    E: ParseError<I>,
    F: Fn(I) -> Result<(I, O1), Err<E>>,
    G: Fn(I) -> Result<(I, O2), Err<E>>,
    H: Fn(I) -> Result<(I, O3), Err<E>>, 

Gets an object from the first parser, then matches an object from the sep_parser and discards it, then gets another object from the second parser.

Arguments

  • first The first parser to apply.
  • sep The separator parser to apply.
  • second The second parser to apply.
use nom::sequence::separated_pair;
use nom::bytes::complete::tag;

let parser = separated_pair(tag("abc"), tag("|"), tag("efg"));

assert_eq!(parser("abc|efg"), Ok(("", ("abc", "efg"))));
assert_eq!(parser("abc|efghij"), Ok(("hij", ("abc", "efg"))));
assert_eq!(parser(""), Err(Err::Error(("", ErrorKind::Tag))));
assert_eq!(parser("123"), Err(Err::Error(("123", ErrorKind::Tag))));