pub fn tag<T, I, Error: ParserError<I>>(
tag: T,
) -> impl Parser<I, <I as Stream>::Slice, Error>
Expand description
Recognizes a literal
The input data will be compared to the tag combinator’s argument and will return the part of the input that matches the argument
It will return Err(ErrMode::Backtrack(InputError::new(_, ErrorKind::Tag)))
if the input doesn’t match the pattern
Note: Parser
is implemented for strings and byte strings as a convenience (complete
only)
§Example
use winnow::token::tag;
fn parser(s: &str) -> IResult<&str, &str> {
"Hello".parse_peek(s)
}
assert_eq!(parser("Hello, World!"), Ok((", World!", "Hello")));
assert_eq!(parser("Something"), Err(ErrMode::Backtrack(InputError::new("Something", ErrorKind::Tag))));
assert_eq!(parser(""), Err(ErrMode::Backtrack(InputError::new("", ErrorKind::Tag))));
use winnow::token::tag;
fn parser(s: Partial<&str>) -> IResult<Partial<&str>, &str> {
"Hello".parse_peek(s)
}
assert_eq!(parser(Partial::new("Hello, World!")), Ok((Partial::new(", World!"), "Hello")));
assert_eq!(parser(Partial::new("Something")), Err(ErrMode::Backtrack(InputError::new(Partial::new("Something"), ErrorKind::Tag))));
assert_eq!(parser(Partial::new("S")), Err(ErrMode::Backtrack(InputError::new(Partial::new("S"), ErrorKind::Tag))));
assert_eq!(parser(Partial::new("H")), Err(ErrMode::Incomplete(Needed::new(4))));