vote up 5 vote down star
2

I've found a few resources on the subject, but they all require a deep understanding of SmallTalk or Haskell, neither of which I know.

flag

63% accept rate

7 Answers

vote up 3 vote down check

Here are some parser combinator libraries in more mainstream languages:

link|flag
vote up 0 vote down

Here is a link to a talk (slides and script) on monadic parser combinators in C++.

link|flag
vote up 0 vote down

Cay Horstmann has 4 combinator parser lectures in Scala, with exercises. There is another Scala example here.

link|flag
vote up 1 vote down

Chrise Double wrote a parser combinator in Javascript.

link|flag
vote up 0 vote down

If you know Python, there's PyParsing.

link|flag
vote up 4 vote down

I wrote 8 longish blog entries on monadic parser combinators in C# and F#; see here for the first one.

See also FParsec (Parsec for F#)

link|flag
vote up 2 vote down

I found an interesting article about implementing a parser combinator in C#. It also references some more general papers on the subject.

The Wikipedia article on the subject also has a general explaination of the concept.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.