up vote 5 down vote favorite
2
share [g+] share [fb]

I'm looking for something simple to use where the grammar is easy to define.

link|improve this question

73% accept rate
feedback

5 Answers

up vote 7 down vote accepted

Although I've never used it before, ANTLR has C# runtime.

link|improve this answer
feedback

If you use F#, check out FParsec.

link|improve this answer
feedback

Just found out about Irony. Used for writing DSL.
Thought I would add it to the list.

link|improve this answer
feedback

System.Text.RegularExpressions?

link|improve this answer
That's a pretty brave answer. There's some real Zealots who will only condone real parsers, and not using things like Regex for parsing code. – Kibbee Dec 14 '08 at 2:03
I'll take that as a valid answer since I didn't define my needs and there are cases where regular expressions are sufficient to define simple DSL. – Renaud Bompuis Dec 14 '08 at 2:17
feedback

Give a look to Coco/R for C#.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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