Tagged Questions

15
votes
4answers
603 views

What is the advantage of using a parser generator like happy as opposed to using parser combinators?

To learn how to write and parse a context-free grammar I want to choose a tool. For Haskell, there are two big options: Happy, which generates a parser from a grammar description and *Parsec, which ...
15
votes
2answers
2k views

How do Scala parser combinators compare to Haskell's Parsec?

I have read that Haskell parser combinators (in Parsec) can parse context sensitive grammars. Is this also true for Scala parser combinators? If so, is this what the "into" (aka ">>") function is ...
10
votes
2answers
911 views

Parsing Indentation-based syntaxes in Haskell's Parsec

I'm trying to parse an indentation-based language (think Python, Haskell itself, Boo, YAML) in Haskell using Parsec. I've seen the IndentParser library, and it looks like it's the perfect match, but ...
9
votes
2answers
582 views

Can Haskell's Parsec library be used to implement a recursive descent parser with backup?

I've been considering using Haskell's Parsec parsing library to parse a subset of Java as a recursive descent parser as an alternative to more traditional parser-generator solutions like Happy. Parsec ...
9
votes
2answers
2k views

A good ocaml parser?

I'm looking for a good ocaml parsing library that isn't a derivative of flex/bison. Ideally, I'd like a monadic combinator library along the lines of parsec, but I can't find anything. I would use ...
7
votes
1answer
356 views

Recursive grammars in FParsec

I've decided to check out FParsec, and tried to write a parser for λ expressions. As it turns out, eagerness makes recursive parsing difficult. How can I solve this? Code: open FParsec type λExpr = ...
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
5answers
1k views

Parse XML in Haskell

I'm trying to get data from a webpage that serves a XML file periodically with stock market quotes. (here is an example: ...
5
votes
2answers
113 views

Is it possible to express chainl1 using applicative?

Is it possible to express the chainl1 combinator from Parsec not using the Monad instance defined by parsec? chainl1 p op = do x <- p rest x where rest x = do f <- op ...
4
votes
1answer
152 views

Parsec-Parser works alright, but could it be done better?

I try to do this: Parse a Text in the form: Some Text #{0,0,0} some Text #{0,0,0}#{0,0,0} more Text #{0,0,0} into a list of some data structure: [Inside "Some Text ",Outside (0,0,0),Inside ...
4
votes
1answer
237 views

Parsing text with optional data at the end

Please note, subsequently to posting this question I managed to derive a solution myself. See the end of this question for my final answer. I'm working on a little parser at the moment for org-mode ...
3
votes
2answers
121 views

Using Parsec to parse regular expressions

I'm trying to learn Parsec by implementing a small regular expression parser. In BNF, my grammar looks something like: EXP : EXP * | LIT EXP | LIT I've tried to implement this in Haskell ...
3
votes
2answers
90 views

Fixing a bad JSON grammar

I've just started learning about parsing, and I wrote this simple parser in Haskell (using parsec) to read JSON and construct a simple tree for it. I am using the grammar in RFC 4627. However, when I ...
3
votes
2answers
304 views

Haskell: Lifting a reads function to a parsec parser

As part of the 4th exercise here I would like to use a reads type function such as readHex with a parsec Parser. To do this I have written a function: liftReadsToParse :: Parser String -> (String ...
3
votes
1answer
331 views

Custom whiteSpace using Haskell Parsec

I would like to use Parsec's makeTokenParser to build my parser, but I want to use my own definition of whiteSpace. Doing the following replaces whiteSpace with my definition, but all the lexeme ...
2
votes
3answers
99 views

Parsec parsing and separating different structures

Let's say I have different parsers p1, ..., pk. I want to define a function pk :: Parser ([t1], ..., [tk]) where pi :: Parser ti. That will parse a collection of strings (one after the other) that ...
2
votes
2answers
387 views

Problems with Haskell's Parsec <|> operator

I am new to both Haskell and Parsec. In an effort to learn more about the language and that library in particular I am trying to create a parser that can parse Lua saved variable files. In these ...
2
votes
2answers
217 views

Parsec parse many question

I need to create a parser for a programming language. So far it is 95% done, I'd say, except for a tiny detail. The program written in this language has the following structure: outputs inputs ...
2
votes
1answer
225 views

Raise ParseError in Haskell/Parsec

What is the prefered way to raise errors (ParseError) in Parsec? I got some code inside a parser that performs a check and if the check fails a ParseError should be returned (i.e. Left ParseError when ...
1
vote
0answers
19 views

Sample grammars in FParsec going beyond the samples?

I am looking for some sample grammars written in FParsec that would go beyond the samples in the project repository. I have found this very nice grammar of GLSL, but this is the only sample I found. ...
1
vote
1answer
304 views

parsec parser for c++ functions?

is there any open source parser implementation for c++ functions with parsec? can't find any, dont want to use libClang, becuase installation failes
1
vote
1answer
206 views

Haskell Parsec items numeration

I'm using Text.ParserCombinators.Parsec and Text.XHtml to parse an input like this: - First type A\n -- First type B\n - Second type A\n -- First type B\n --Second type B\n And my output ...
1
vote
2answers
262 views

Haskell - Parsec Parsing <p> element

I'm using Text.ParserCombinators.Parsec and Text.XHtml to parse an input like this: This is the first paragraph example\n with two lines\n \n And this is the second paragraph\n And my output ...
1
vote
1answer
182 views

Parsec Haskell Lists

I'm using Text.ParserCombinators.Parsec and Text.XHtml to parse an input and get a HTML output. If my input is: * First item, First level ** First item, Second level ** Second item, ...
0
votes
1answer
172 views

Haskell Parse Paragraph and em element with Parsec

I'm using Text.ParserCombinators.Parsec and Text.XHtml to parse an input like this: this is the beginning of the paragraph --this is an emphasized text-- and this is the end\n And my output should ...