Tagged Questions
Parsec is an industrial strength, monadic parser combinator library for Haskell.
15
votes
4answers
602 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 ...
13
votes
2answers
744 views
Using Parsec with Data.Text
Using Parsec 3.1, it is possible to parse several types of inputs:
[Char] with Text.Parsec.String
Data.ByteString with Text.Parsec.ByteString
Data.ByteString.Lazy with Text.Parsec.ByteString.Lazy
...
11
votes
1answer
197 views
How to define multiple type of comment block in Parsec
I am trying to learn how to use Parsec to write a Delphi parser, but I am getting stuck at defining the LanguageDef.
In Delphi, there are two types of comment blocks, (* comments *) and { comments }.
...
11
votes
5answers
553 views
What are the benefits of applicative parsing over monadic parsing?
There seems to be a consensus that you should use Parsec as an applicative rather than a monad. What are the benefits of applicative parsing over monadic parsing?
style
performance
abstraction
Is ...
10
votes
2answers
904 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
1answer
238 views
Full parser examples with parsec?
I'm trying to make a parser for a simple functional language, a bit like Caml, but I seem to be stuck with the simplest things.
So I'd like to know if there are some more complete examples of parsec ...
9
votes
2answers
581 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 ...
8
votes
2answers
249 views
User state in Parsec
I'm parsing an expression using Parsec and I want to keep track of variables in these expressions using the user state in Parsec. Unfortunately I don't really get how to do it.
Given the following ...
8
votes
2answers
286 views
What's the different between Text.ParserCombinators.Parsec and Text.Parsec
Text
Text.Parsec
Text.Parsec.ByteString
Text.Parsec.ByteString.Lazy
Text.Parsec.Char
Text.Parsec.Combinator
Text.Parsec.Error
Text.Parsec.Expr
...
7
votes
2answers
185 views
Is there an haskell EDSL for writing lexers?
Mixing the lexer and parsing phases in one phase sometimes makes Parsec parsers less readable but also slows them down. One solution is to use Alex as a tokenizer and then Parsec as a parser of the ...
7
votes
1answer
350 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
4answers
646 views
Haskell parsec parsing a string of items
I have a list that I need to parse where the all but the last element needs to be parsed by one parser, and the last element needs to be parsed by another parser.
a = "p1 p1b ... p2"
or
a = "p2"
...
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
243 views
Trivial parsec example produces a type error
I'm trying to get this trivial parsec code to compile
import Text.Parsec
simple = letter
but I keep getting this error
No instance for (Stream s0 m0 Char)
arising from a use of `letter'
Possible ...
6
votes
1answer
176 views
why is parsecs “choice” combinator seemingly stuck on the first choice?
After looking at the CSV sample code in Real World Haskell, I've tried to build a little XML parser. But close tags error out with 'unexpected "/"' errors. Can you tell me why my "closeTag" parser ...
6
votes
3answers
1k views
Parsec vs Yacc/Bison/Antlr: Why and when to use Parsec?
I'm new to Haskell and Parsec. After reading Chapter 16 Using Parsec of Real World Haskell, a question appeared in my mind: Why and when is Parsec better than other parser generators like ...
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: ...
6
votes
3answers
1k views
Using Haskell's Parsec to parse a ByteString
I've managed to use Parsec to parse a String, but cannot manage to do the same with a ByteString.
How can I make Parsec work with ByteStrings without manually converting them to Strings?
I get the ...
6
votes
3answers
568 views
Haskell Parsec compile error
I've installed Haskell via the pre built installer v6.8.2.
When trying to compile this sample file with GHC
module Main where
import Text.ParserCombinators.Parsec
import System.Environment
main :: ...
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
...
5
votes
2answers
222 views
How to use Control.Monad.State with Parsec?
I'm surprised that I could not find any info on this. I must be the only person having any trouble with it.
So, let's say I have a dash counter. I want it to count the number of dashes in the ...
5
votes
3answers
259 views
Haskell: FRP Reactive Parsec?
Is there (or is it possible to have) reactive parsec (or any other pure functional parser) in Haskell?
simply, I want to feed parser my self char by char. and get result as much as I feed enough to ...
5
votes
2answers
189 views
Parsing scheme vectors in haskell using arrays
I'm attempting the Write Yourself a Scheme in 48 Hours tutorial and as someone new to haskell it's pretty difficult.
I'm currently working on a problem where I'm supposed to add the ability to parse ...
5
votes
2answers
174 views
In Parsec, is there a way to prevent lexeme from consuming newlines?
All of the parsers in Text.Parsec.Token politely use lexeme to eat whitespace after a token. Unfortunately for me, whitespace includes new lines, which I want to use as expression terminators. Is ...
5
votes
2answers
147 views
Monadic type confusion
I am going through Write Yourself a Scheme in Haskell. Its a great tutorial, but I've run into a wall with one of the parsing exercises:
parseNumber :: Parser LispVal
parseNumber = liftM (Number . ...
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
5answers
179 views
Put two monadic values into a pair and return it
I am playing with Parsec and I want to combine two parsers into one with the result put in a pair, and then feed it another function to operate on the parse result to write something like this:
try ...
4
votes
2answers
196 views
The type signature of Parsec function 'parse' and the class 'Stream'
What does the constraint (Stream s Identity t) mean in the following type declaration?
parse :: (Stream s Identity t)
=> Parsec s () a -> SourceName -> s -> Either ParseError a
What ...
4
votes
1answer
236 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 ...
4
votes
4answers
2k views
Can parser combinators be made efficient?
Around 6 years ago, I benchmarked my own parser combinators in OCaml and found that they were ~5× slower than the parser generators on offer at the time. I recently revisited this subject and ...
3
votes
2answers
103 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
1answer
127 views
using parsec to pick data out of text file
As a learning exercise I'm using parsec to look for values in a test file. I'd normally use regexp for this particular case, but want to see if parsec makes sense as well. Unfortunately, I'm running ...
3
votes
1answer
185 views
Monadic equivalent of applicative <*
After having read Anthony's response on a style-related parser question, I was trying to convince myself that writing monadic parsers can still be rather compact.
So instead of
reference :: Parser ...
3
votes
1answer
86 views
Get match length in parsec
Parsec's parse pattern "(some_input)" input returns the parsed data (as I specified in pattern.
How to know how much of input have it consumed (the pattern is not anchored with eof)? I don't want to ...
3
votes
3answers
316 views
Unexpected end of input in parsec
I want to parse a file like this:
66:3 3:4
329:2
101:3
495:4
55:5
268:5
267:2
242:4
262:1
861:1
My code is like the following:
getTestData :: String -> IO [[(Int, Int)]]
getTestData ...
3
votes
1answer
182 views
FParsec: how to parse date in fparsec (newbie)
I am using the Bill Casarin post on how to parse delimited files with fparsec, I am dumbing the logic down to get an understanding of how the code works. I am parsing a multi row delimited document ...
3
votes
3answers
322 views
Haskell Parsec and Unordered Properties
I am trying to use Parsec to parse something like this:
property :: CharParser SomeObject
property = do
name
parameters
value
return SomeObjectInstance { fill in records here }
I am ...
3
votes
2answers
303 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
329 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 ...
3
votes
1answer
288 views
parsec-3.1.0 with custom token datatype
parsec-3.1.0 ( http://hackage.haskell.org/package/parsec-3.1.0 )
works with any token type. However there are combinators like Text.Parsec.Char.satisfy that are only defined for Char datatype. There ...
3
votes
4answers
229 views
With Parsec, how do I parse zero or more foo1 terminated by foo2 and all separated by dot?
What I am trying to do seems pretty simple, but since I am a parsec Haskell newb, the solution is eluding me.
I have two parsers, let's say foo1 and foo2 where foo1 can parse a intermedate term and ...
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
1answer
106 views
Parsing FB2(XML) in Haskell
Started to learn Haskell, I decided to get acquainted with Parsec, but there were problems. I'm trying to implement the parsing of the books in the format of FB2. On conventional tags ( text ) is ...
2
votes
1answer
122 views
parsec can't define rule for endBy function
I have a problem for writing parsec rules for one language
I have next language definition (problematic part)
COMMAND ::= ':' WS LITERAL WS {LITERAL WS}* ';'
LITERAL ::= "[CHAR]*" | [^"\ ][^\ ]*
...
2
votes
1answer
123 views
Parse Error on Input '<-' inside a do block?
I'm trying to do some parsing in Haskell using Parsec. I've got a number of parsers in my code, but am getting an error on one of them:
expression2 =
do (operator lexer "|"
a <- ...
2
votes
2answers
385 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
4answers
278 views
Parsec - 'many' and error messages
When I try to parse many p, I don't receive the 'expecting p' message:
> parse (many (char '.') >> eof) "" "a"
Left (line 1, column 1):
unexpected 'a'
expecting end of input
Compare to
...