Function nom::character::streaming::anychar

source ·
pub fn anychar<T, E: ParseError<T>>(input: T) -> IResult<T, char, E>
Expand description

Matches one byte as a character. Note that the input type will accept a str, but not a &[u8], unlike many other nom parsers.

streaming version: Will return Err(nom::Err::Incomplete(_)) if there’s not enough input data.

§Example

assert_eq!(anychar::<_, (_, ErrorKind)>("abc"), Ok(("bc",'a')));
assert_eq!(anychar::<_, (_, ErrorKind)>(""), Err(Err::Incomplete(Needed::Size(1))));