Tagged Questions
7
votes
7answers
2k views
Python implementation of Parsec?
I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requires me to do some ...
6
votes
1answer
324 views
Scala: Can I nudge a combinator parser to be locally greedy?
Suppose I have an ambiguous language expressed in combinator parser. Is there a way to make certain expressions locally greedy? Here's an example of what I mean.
import ...
5
votes
1answer
1k views
Scala combinator parsers - distinguish between number strings and variable strings
I'm doing Cay Horstmann's combinator parser exercises, I wonder about the best way to distinguish between strings that represent numbers and strings that represent variables in a match statement:
def ...
3
votes
3answers
325 views
Backtracking in scala parser combinators?
It seems like scala's parser combinators don't backtrack. I have a grammar (see bottom) which can't parse the following "stmt" correctly:
copy in to out .
That should be easy to parse with ...
3
votes
1answer
1k views
parser combinator: how to terminate repetition on keyword
I'm trying to figure out how to terminate a repetition of words using a keyword. An example:
class CAQueryLanguage extends JavaTokenParsers {
def expression = ("START" ~ words ~ "END") ^^ { x ...
1
vote
2answers
256 views
returning meaningful error messages from a parser written with Scala Parser Combinators
I try to write a parser in scala using Parser Combinators. If I match recursively,
def body: Parser[Body] =
("begin" ~> statementList ) ^^ {
case s => { new Body(s); }
}
def ...
1
vote
2answers
110 views
How do I get the sum of all content when parsing an XML tag in Ruby?
I have some XHTML (but really any XML will do) like this:
<h1>
Hello<span class='punctuation'>,</span>
<span class='noun'>World<span ...
0
votes
1answer
86 views
How to encode a constraint on the format of String values
As I frequently observe and how I often implement a name attribute, is to simply model it as String.
What now, if the name has to follow a certain syntax, i.e. format? In Java I probably would define ...