pub fn alpha0<T, E: ParseError<T>, const STREAMING: bool>(
input: T
) -> IResult<T, <T as IntoOutput>::Output, E>where
T: InputTakeAtPosition + InputIsStreaming<STREAMING> + IntoOutput,
<T as InputTakeAtPosition>::Item: AsChar,
Expand description
Recognizes zero or more lowercase and uppercase ASCII alphabetic characters: a-z, A-Z
Complete version: Will return the whole input if no terminating token is found (a non alphabetic character).
Streaming version: Will return Err(nom8::Err::Incomplete(_))
if there’s not enough input data,
or if no terminating token is found (a non alphabetic character).
Example
fn parser(input: &str) -> IResult<&str, &str> {
alpha0(input)
}
assert_eq!(parser("ab1c"), Ok(("1c", "ab")));
assert_eq!(parser("1c"), Ok(("1c", "")));
assert_eq!(parser(""), Ok(("", "")));
assert_eq!(alpha0::<_, (_, ErrorKind), true>(Streaming("ab1c")), Ok((Streaming("1c"), "ab")));
assert_eq!(alpha0::<_, (_, ErrorKind), true>(Streaming("1c")), Ok((Streaming("1c"), "")));
assert_eq!(alpha0::<_, (_, ErrorKind), true>(Streaming("")), Err(Err::Incomplete(Needed::new(1))));