Top "Parser-combinators" questions

In functional programming, a parser combinator is a higher-order function which accepts several parsers as input and returns a new parser as its output.

Use Scala parser combinator to parse CSV files

I'm trying to write a CSV parser using Scala parser combinators. The grammar is based on RFC4180. I came up …

parsing scala csv parser-combinators
Understanding the tilde in Scala's parser combinators

I'm fairly new to Scala and while reading about parser combinators(The Magic Behind Parser Combinators, Domain-Specific Languages in Scala) …

scala parser-combinators