What I'm especially interested in is the ability to define the grammar in the code as ordinary code without any unnecessary cruft.

I'm aware I could use IronPython. I don't want to.

UPDATE:

To further explain what I'm looking for, I'm including some sample pyparsing code. This is an incomplete parser to convert emacs shortcut keys to more conventional notation. This example is, of course, small enough that string functions would suffice, but it's just to show the cleanness and conciseness of pyparsing.

from pyparsing import Literal, OneOrMore, Optional, Word, printables, replaceWith

CTRL_MODIFIER = Literal('C').setParseAction(replaceWith('Ctrl'))
META_MODIFIER = Literal('M').setParseAction(replaceWith('Alt'))
MODIFIER = CTRL_MODIFIER | META_MODIFIER # Note operator overloading

SEPARATOR = Literal('-').setParseAction(replaceWith('+'))

MODIFIER_LIST = OneOrMore(MODIFIER + SEPARATOR)

KEY = Word(printables) # This is a "word" composed of any number of printable characters.

# The lambda functions here just join the tokens with the literal string 
# on which .join is called.
STROKE = (Optional(MODIFIER_LIST) + KEY).setParseAction(
    lambda tokens: ' '.join([str(token) for token in tokens]))
BINDING = OneOrMore(STROKE).setParseAction(
    lambda tokens: ', '.join([str(token) for token in tokens]))

# Example usage:
# >>> BINDING.transformString('M-/')
# Alt + /
# >>> BINDING.transformString('C-x C-f')
# Ctrl + x, Ctrl + f
# >>> BINDING.transformString('C-x f')
# Ctrl + x, f
# >>> BINDING.transformString('C-x M-c M-butterfly')
# Ctrl + x, Alt + c, Alt + butterfly

I would like to be able to write grammars in .NET with as much ease in as few lines.

link|improve this question

"pyparsing" appears to be a word specific to Python. Is there a more general programming term for that type of action? – Neil N Sep 21 '09 at 19:39
he means a good grammar library – Matt Briggs Sep 21 '09 at 19:40
real programmers use butterflies! – Pierre-Alain Vigeant Sep 22 '09 at 13:13
feedback

3 Answers

up vote 2 down vote accepted

Take a look at: Irony It allows you to define your grammar in your c# code

link|improve this answer
This is definitely helpful. It's quite a bit more complicated than pyparsing, but still pretty cool. – Instance Hunter Sep 22 '09 at 15:29
What this really lacks is an easy way to specify parse actions. The grammar specification is almost as simple as in pyparsing, but there's a lot of complication involved in telling it what to do after that. – Instance Hunter Sep 22 '09 at 15:39
it is still a work in progress from the creator. I'm sure he'd welcome any cool insights you might have – Toad Sep 22 '09 at 18:37
feedback

You could try NParsec, but it seems not to be actively developed any more.

link|improve this answer
feedback

Project OSLO, which won't be released for another few years, and is going to be an over-engineered version of pyparsing.

link|improve this answer
haha I can come up with answers like this as well ;^) – Toad Sep 21 '09 at 19:44
feedback

Your Answer

 
or
required, but never shown

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