character
library
Classes
Alpha0
Parses ASCII literal characters and returns a string containing those
characters, or an empty string if no such characters have been parsed.
Alpha1
Parses ASCII literal characters and returns a string containing those
characters if at least one such character has been parsed.
Alphanumeric0
Parse ASCII literal and numeric characters and returns a string containing
those characters, or an empty string if no such characters have been parsed.
Alphanumeric1
Parse ASCII literal and numeric characters and returns a string containing
those characters if at least one such character has been parsed.
AnyChar
Parses any single character and returns that character.
Char
Parses one character with code char and returns that character.
Digit0
Parses ASCII numeric characters and returns a string containing those
characters, or an empty string if no such characters have been parsed.
Digit1
Parses ASCII numeric characters and returns a string containing those
characters if at least one such character has been parsed.
HexDigit0
Parse ASCII hexadecimal numeric characters and returns a string containing
those characters, or an empty string if no such characters have been parsed.
HexDigit1
Parse ASCII hexadecimal numeric characters and returns a string containing
those characters if at least one such character has been parsed.
NoneOf
Parses a single character and returns any character if it is not in the
specified list of characters .
NoneOfOf
Parses a single character and returns any character if it is not in the
list of characters obtained as the result returned by the parser chars .
OneOf
Parses a single character and returns that character if it is in the
specified list of characters .
Satisfy
Parses a single character, and if chars
satisfies the criteria,
returns that character.