2
votes
2answers
83 views

parsec using between to parse parens

If I wanted to parse a string with multiple parenthesized groups into a list of strings holding each group, for example "((a b c) a b c)" into ["((a b c) a b c)","( a b c)"] How would I do that ...
0
votes
1answer
89 views

parsing parentheses from a string

So I have a logical statement such as "((A o B) a B) o (B a C)" and I want to parse each set of statements within the parenthesis to each part in a list... here is what i have so far but since im new ...
1
vote
1answer
88 views

German stanford parser [closed]

I am using the german version of the stanford parser to parse short german sentences into a parse tree. An example: Hallo, mein Name ist Luke. (ROOT (S (ITJ Hallo) ($, ,) (NP (PPOSAT mein) (NN ...
2
votes
2answers
122 views

Shift/Reduce conflicts in a propositional logic parser in Happy

I'm making a simple propositional logic parser on happy based on this BNF definition of the propositional logic grammar, this is my code { module FNC where import Data.Char import System.IO } -- ...
0
votes
2answers
97 views

How do I simplify the following command line options parsing code?

I am working on a homework manager for personal use, developing it with Haskell. I have, as a start, made the following code for parsing the commandline arguments, code which i should be easily ...
10
votes
1answer
77 views

Tracking Position when Scaning Tokens complicates Parser

I am writing a two pass parser where I first scan the text in to tokens (using Alex) then parse those tokens (using Parsec). All well and good until I tried to add position information to the tokens ...
0
votes
1answer
95 views

How can I remove some terms when parsing this BNF?

I am attempting to parse a boolean expression using the Happy library. The problem is that the result is not as good as I would want it when I introduce parentheses. I have made the following grammar. ...
2
votes
1answer
128 views

Incremental Parsing from Handle in Haskell

I'm trying to interface Haskell with a command line program that has a read-eval-print loop. I'd like to put some text into an input handle, and then read from an output handle until I find a prompt ...
0
votes
1answer
56 views

How to Get Parsec to Parse Multiple Expressions

I'm following this scheme interpreter tutorial: http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours/ but can't seem to figure out how to setup the REPL or Parsec so I can have the ...
13
votes
1answer
270 views

Haskell equivalent of scala collect

I'm trying to read in a file containing key/value pairs of the form: #A comment a=foo b=bar c=baz Some other stuff With various other lines, as suggested. This wants to go into a map that I can ...
7
votes
1answer
242 views

Haskell/Parsec: How do you use the functions in Text.Parsec.Indent?

I'm having trouble working out how to use any of the functions in the Text.Parsec.Indent module provided by the indents package for Haskell, which is a sort of add-on for Parsec. What do all these ...
0
votes
2answers
133 views

Parse Error (x + 1) when Compiling in Haskell

I'm doing this assignment and I'm desperate to get this to work. I know that this isn't the smartest way, and that it is not the most efficient way. I did this purely because I want to test how ...
4
votes
1answer
94 views

“Sub-parsers” in pipes-attoparsec

I'm trying to parse binary data using pipes-attoparsec in Haskell. The reason pipes (proxies) are involved is to interleave reading with parsing to avoid high memory use for large files. Many binary ...
8
votes
1answer
211 views

Haskell/Parsec: how do I use Text.Parsec.Token with Text.Parsec.Indent (from the indents package)

The indents package for Haskell's Parsec provides a way to parse indentation-style languages (like Haskell and Python). It redefines the Parser type, so how do you use the token parser functions ...
4
votes
2answers
109 views

attoparsec incorrect parsing of doubles

I am using attoparsec's built-in parsers 'double' and 'number' to parse floating point values and I get different results from different parsers. >parse number "8.918605790440055e-2" Done "" ...
0
votes
1answer
90 views

Emptylist issues when using parsec

Here is some of the code which is causing some very strange errors depending on what is parsed after the token emptyList in the target file. data Express = Seq [Express] | ID String ...
3
votes
1answer
118 views

Extract all occurences of a particular type in Haskell

I am writing some programs in Haskell which manipulate Haskell source code in certain ways. One of the things I would like to be able to do is to extract all occurrences of a particular type (and ...
4
votes
1answer
147 views

haskell - parsing/reading content of .pdf-files

is there any possibility in haskell to just decrypt a .pdf file, read in the content and return a String? And, if there is one, could you give me a little example like e.g.: ... import ...
4
votes
1answer
98 views

Haskell Parsec, adapting oneOf to [String]

I'm going through the Write yourself a scheme in 48 hours tutorial. symbol :: Parser Char symbol = oneOf "!#$%&|*+-/:<=>?@^_~" This is great for symbols, but what if I have a list of ...
2
votes
2answers
195 views

Haskell: Traverse through a String/Text File

I am trying to read a script file then process and output it to a html file. In my script file, whenever there is a @title(this is a title), I will add tag [header] this is a title [/header] in my ...
4
votes
1answer
193 views

Parsec or happy (with alex) or uu-parsinglib

I am going to write a parser of verilog (or vhdl) language and will do a lot of manipulations (sort of transformations) of the parsed data. I intend to parse really big files (full Verilog designs, as ...
1
vote
1answer
140 views

Parsing Haskell custom data types

I have worked my way through the Haskell Koans provided here: https://github.com/roman/HaskellKoans I am stuck on the last two Koans, both involving parsing custom algebraic data types. Here is the ...
5
votes
1answer
120 views

Using Parsec to write a Read instance

Using Parsec, I'm able to write a function of type String -> Maybe MyType with relative ease. I would now like to create a Read instance for my type based on that; however, I don't understand how ...
1
vote
1answer
108 views

Adding extra arguments to Haskell functions before compiling

As part of a program which dynamically loads user inputted strings as Haskell source code, I want to do some pre-processing on the user's input before compiling it. One of the things I would like to ...
-2
votes
2answers
101 views

Haskell, syntax error [closed]

temperatura :: Float->Float temperatura qCalor | qCalor == 0 = 10 | 0 < qCalor < 3 = 30--fTem1 | 3 <= qCalor <= 9 = 50 | qCalor > 9 = 60--fTemp2 | 15 <= qCalor ...
2
votes
1answer
97 views

Parsec and user defined state

I'm trying to implement js parser in haskell. But I'm stuck with automatic semicolon insertion. I have created test project to play around with problem, but I can not figure out how to solve the ...
1
vote
1answer
78 views

haskell parsing data structure with extra information

I have problem to extract extra information from my parsing. I have my own data structure to parse, and that works fine. I wrote the parser for my data structure as Parse MyDataStructure which parse ...
1
vote
2answers
102 views

How to parse uncertain data from JSON in Haskell?

I used the answer in json_answer (Text.JSON package) and I've got a generic json Haskell data type. It's ok to define a custom Haskell data type for certain data, but if the data I want to parse is ...
3
votes
2answers
140 views

Making a Read instance in Haskell

I have a data type data Time = Time {hour :: Int, minute :: Int } for which i have defined the instance of Show as being instance Show Time where show (Time ...
1
vote
2answers
112 views

Use custom data type to define new data type in haskell

I was wondering if it is possible to do something like this in Haskell data Word = Det String | Adj String | Noun String | Verb String | Adverb String data NounPhrase = Noun | Det Noun If I'm going ...
2
votes
1answer
98 views

How to restrict backtracking in a monad transformer parser combinator

tl;dr, How do I implement parsers whose backtracking can be restricted, where the parsers are monad transformer stacks? I haven't found any papers, blogs, or example implementations of this approach; ...
0
votes
1answer
125 views

Why doesn't Parsec allow white spaces before operators in the table for buildExpressionParser

In the code below I can correctly parse white spaces after each of the tokens using Parsec: whitespace = skipMany (space <?> "") number :: Parser Integer number = result <?> "number" ...
9
votes
4answers
252 views

Parser library that can handle ambiguity

I'm looking for a mature parser library, either for Scala or Haskell. The most important point is, that the library can handle ambiguity. If an expression is ambiguous, I want every possible abstract ...
3
votes
2answers
205 views

How do I make Attoparsec parser succeed without consuming(like parsec lookAhead)

I wrote a quick attoparsec parser to walk an aspx file and drop all the style attributes, and it's working fine except for one piece of it where I can't figure out how to make it succeed on matching ...
3
votes
3answers
106 views

Parse input and do action

We have a standard input like: 1 2 3 4 5 6 1 3 2 5 3 2 ... Each line consists of exactly three numbers, for each line we'd like to compute the function value f :: (Int, Int, Int) -> Int and ...
8
votes
2answers
187 views

How do I implement an Applicative instance for a parser without assuming Monad?

I can't figure out how to implement an Applicative instance for this parser: newtype Parser m s a = Parser { getParser :: [s] -> m ([s], a) } without assuming Monad m. I expected to only have ...
7
votes
1answer
173 views

Haskell library for parsing Bash scripts?

Does anybody know of a Haskell library which can parse arbitrary Bash scripts? A cursory search of Hackage indicates that there's a package called bash for writing scripts, but I don't see anything ...
2
votes
2answers
183 views

Parsing data with Parsec and omitting comments

I am trying to write a Haksell Parsec Parser that parses input data from a file into the LogLine datatype as follows: --Final parser that holds the indvidual parsers. final :: Parser [LogLine] final ...
2
votes
3answers
150 views

Haskell parsing to custom datatype

I'm relatively new to Haskell. Here is what i want to do: I want parse strings to chesspieces. my code is pretty straightforward so i hope it will explain itself: data ChessPiece = King | ... etc ...
0
votes
1answer
143 views

No instance for (Show ([(String, Int)] -> Int))

to calculate the value of the expression on the fly at the production rules in happy doesn't work if I'm using the lambda expressions. For example this code Exp : let var '=' Exp in Exp { \p ...
2
votes
1answer
77 views

Can CmdArgs have flags outside of sub-modes?

I know that if there is a common flag among all of the sub-modes, it would be listed under "Common flags", but that flag still needs to come after the mode constructor. Sometimes, there are flags that ...
1
vote
2answers
125 views

Haskell - Reading a file and passing data as arguments to function

I'm trying to get some data from a file, then parse it and pass it to another function as an argument. data LogLine = LogLine { name :: String , args1 :: String , args2 :: String , ...
1
vote
0answers
63 views

Haskell - execute basic prefix operations from input [duplicate]

Possible Duplicate: Haskell parser to AST data type, assignment I'm stuck on a problem and I've been for some time now. I got a string table with the intention of calculating a series of ...
1
vote
2answers
104 views

haskell happy - “Couldn't match expected type”

I have some problems to understand error messages of the parser generator system happy for haskell. For instance this code { module Test_parser where import System.IO import Test_lexer } %name ...
1
vote
2answers
158 views

Haskell parser to AST data type - parse error on input `|'

I am struggeling with an assignment we have been given. I have written this code slightly based on a different guide here: Not in scope: data constructor The problem i have is a the pipe here: | x ...
3
votes
1answer
150 views

How can I effectively use the start code features of Alex?

I'm starting to learn Alex and believe I've gotten to the point where stateful context would be helpful, but I'm not entirely sure how to go about it. I'm attempting to lex a limited subset of erlang ...
2
votes
3answers
755 views

Haskell parser to AST data type, assignment

I have been searching around the interwebs for a couple of days, trying to get an answer to my questions and i'm finally admitting defeat. I have been given a grammar: Dig ::= 0 | 1 | 2 | 3 | 4 | 5 | ...
2
votes
2answers
200 views

Functional Parser example from Programming in Haskell

On page 76 we define a function item as parser -- a function that takes a String and returns [(Char, String)] or [] if failed. On page 78 we define a function sat that takes a predicate p and "wraps" ...
4
votes
2answers
328 views

Haskell parser to AST

As an exercise to learn Haskell (and torture myself), I am considering writing a configurable Haskell code beautifier. It will support a configuration file written in JSON or YAML (or something ...
0
votes
2answers
137 views

Overload resolution during JSON parsing in Haskell

I am reading "Real World Haskell" (great book) and I have some confusion about how the compiler selects an overloaded function. If I have a type class type JSONError = String class JSON a where ...

1 2 3 4