pub fn alpha(input: &[u8]) -> Option<Matches<'_, 1>>Expand description
A pattern that fails if the byte at the start of the input is not an ascii alphabetic character
Example
use bparse::{Pattern, alpha};
assert_eq!(alpha.test(b"a").unwrap().value(), b"a");
assert_eq!(alpha.test(b"1"), None);