microparsec icon indicating copy to clipboard operation
microparsec copied to clipboard

Implement common character parsers from Text.Parsec.Char

Open schneiderfelipe opened this issue 3 years ago • 0 comments

Or find alternatives:

  • [x] oneOf
  • [x] noneOf
  • [x] spaces
  • [x] space
  • [x] newline
  • [x] crlf
  • [x] endOfLine
  • [ ] tab
  • [ ] upper
  • [ ] lower
  • [ ] alphaNum
  • [ ] letter
  • [ ] digit
  • [ ] hexDigit
  • [ ] octDigit
  • [ ] char
  • [ ] anyChar
  • [ ] satisfy
  • [ ] string

Many can be implemented using satisfy and functions from strutils.

See code here and docs here.

schneiderfelipe avatar Jun 21 '21 20:06 schneiderfelipe