Safe Haskell | None |
---|---|
Language | Haskell98 |
Unicode character parsers. The character classification is identical to the classification in the Data.Char module.
- control :: P s Char
- space :: P s Char
- lower :: P s Char
- upper :: P s Char
- alpha :: P s Char
- alphaNum :: P s Char
- printable :: P s Char
- digit :: P s Char
- octDigit :: P s Char
- hexDigit :: P s Char
- letter :: P s Char
- mark :: P s Char
- number :: P s Char
- punctuation :: P s Char
- symbol :: P s Char
- separator :: P s Char
- ascii :: P s Char
- latin1 :: P s Char
- asciiUpper :: P s Char
- asciiLower :: P s Char
Documentation
punctuation :: P s Char Source #
Match a Unicode punctuation character.
asciiUpper :: P s Char Source #
Match an ASCII upper-case letter.
asciiLower :: P s Char Source #
Match an ASCII lower-case letter.