Expand description
Character specific parsers and combinators, complete input version.
Functions recognizing specific characters.
Functions§
- alpha0
Deprecated Recognizes zero or more lowercase and uppercase ASCII alphabetic characters: a-z, A-Z - alpha1
Deprecated Recognizes one or more lowercase and uppercase ASCII alphabetic characters: a-z, A-Z - alphanumeric0
Deprecated Recognizes zero or more ASCII numerical and alphabetic characters: 0-9, a-z, A-Z - alphanumeric1
Deprecated Recognizes one or more ASCII numerical and alphabetic characters: 0-9, a-z, A-Z - anychar
Deprecated Matches one byte as a character. Note that the input type will accept astr
, but not a&[u8]
, unlike many other nom parsers. - char
Deprecated Recognizes one character. - crlf
Deprecated Recognizes the string “\r\n”. - digit0
Deprecated Recognizes zero or more ASCII numerical characters: 0-9 - digit1
Deprecated Recognizes one or more ASCII numerical characters: 0-9 - hex_
digit0 Deprecated Recognizes zero or more ASCII hexadecimal numerical characters: 0-9, A-F, a-f - hex_
digit1 Deprecated Recognizes one or more ASCII hexadecimal numerical characters: 0-9, A-F, a-f - will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number
- line_
ending Deprecated Recognizes an end of line (both ‘\n’ and ‘\r\n’). - multispace0
Deprecated Recognizes zero or more spaces, tabs, carriage returns and line feeds. - multispace1
Deprecated Recognizes one or more spaces, tabs, carriage returns and line feeds. - newline
Deprecated Matches a newline character ‘\n’. - none_of
Deprecated Recognizes a character that is not in the provided characters. - not_
line_ ending Deprecated Recognizes a string of any char except ‘\r\n’ or ‘\n’. - oct_
digit0 Deprecated Recognizes zero or more octal characters: 0-7 - oct_
digit1 Deprecated Recognizes one or more octal characters: 0-7 - one_of
Deprecated Recognizes one of the provided characters. - satisfy
Deprecated Recognizes one character and checks that it satisfies a predicate - space0
Deprecated Recognizes zero or more spaces and tabs. - space1
Deprecated Recognizes one or more spaces and tabs. - tab
Deprecated Matches a tab character ‘\t’. - will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number
- will parse a number in text form to a number