[Haskell-beginners] tokenizing a string and parsing the string

Stephen Tetley stephen.tetley at gmail.com
Wed Oct 12 07:34:43 CEST 2011


In combinator parsing with say Parsec, you don't tokenize the input
the parsing - this is an instance of so called "scannerless" parsing
(slight exaggeration for sake of simplicity).

If you needed to tokenize then parse, this is the model followed by
Alex and Happy.

On 12 October 2011 06:28, kolli kolli <nammukolli04 at gmail.com> wrote:
...
> Can anyone help how to tokenize  a string and parse it.



More information about the Beginners mailing list