A parser combinator library for F#.
1
vote
1answer
68 views
Parsing the full input twice
To achieve case-insensitive infix operators using OperatorPrecedenceParser, I'm preprocessing the input, parsing it as text delimited by string literals. The text portion is then searched for infix ...
3
votes
2answers
87 views
Can this be done with FParsec?
As a follow-on to: How do I test for exactly 2 characters with fparsec?
I need to parse a string that consists of pairs of identifiers followed by freeform text. I can easily construct a parser that ...
4
votes
2answers
80 views
Parsing date and time with FParsec
Within a simple query language I'd like to recognize date and time literals, preferably without using delimiters. For example,
CreationDate = 2013-05-13 5:30 PM
I could use a combinator to detect ...
3
votes
1answer
74 views
How do I test for exactly 2 characters with fparsec?
I have the following program that runs. It takes a line of text and splits it into two parts, the first is an identifier and the second is the remainder of the line. My parser for the identifier ...
1
vote
1answer
81 views
Where is the whitespace in Fparsec v. 0.9.2 (newbie)?
In Fparsec V.0.8, there is FParser.CharParser.whitespace. But in Fparsec 0.9.2, there isn't FParser.CharParser.whitespace.Where is the whitespace in Fparsec v. 0.9.2?
When I tried to compile the ...
2
votes
2answers
134 views
Representing epsilon productions with FParsec parser combinators
It is often convenient to express grammar productions in BNF like
A ::= "car"
| "bike"
| ε
where ε represents an empty production rule; i.e., the nonterminal "A" could expand to the ...
2
votes
1answer
84 views
Avoiding value restriction error for generic use of function that returns two functions
I want to use the FParsec createParserForwardedToRef function with a generic Expr union, like this:
type Expr<'Term> =
| Unary of Operator * Expr<'Term>
| Binary of ...
3
votes
1answer
273 views
Compiling an F# 2.0 project in VS2012
I have a solution for VS2010 that includes some F# projects that work against the F# 2.0 compiler/SDK, leveraging fparsec and fsharp powerpack.
I then upgraded my main development machine to VS2012, ...
0
votes
2answers
188 views
FParsec - How to parse from standard input stream
I can't seem to successfully parse from standard input stream with FParsec. I reduced my case to this very simple code :
match (runParserOnStream (pstring "test" .>> ...
1
vote
1answer
93 views
FParsec combinator to turn Parser<char,_> until Parser<string,_>?
I'm certain there's a really simple answer to this, but I've been staring at this all day and I can't figure it out.
As per the tutorial, I'm implementing a JSON parser. To challenge myself, I'm ...
2
votes
3answers
306 views
Pattern Matching XML in F#
New Library: XParsec
This question has lead to a stream-and-type-independent, non-linear, extensible parsec implementation in F# 3.0 - inspired by FParsec, freed from Chars and linear Streams and ...
2
votes
2answers
161 views
Whitespace sensitive FParsec
I'm trying to implement a whitespace sensitive parser using FParsec, and I'm starting off with the baby step of defining a function which will parse lines of text that start with n chars of ...
2
votes
3answers
223 views
Translate Haskell parsec to FParsec
how to translate this Haskell code:
import Text.ParserCombinators.Parsec((<|>), unexpected, lookAhead, noneOf, char)
import Control.Monad(when)
data BracketElement = BEChar Char | BEChars ...
3
votes
3answers
232 views
Advice on FParsec
I have the following subexpression to parse 'quotes' which have the following format
"5.75 @ 5.95"
I therefore have this parsec expression to parse it
let pquote x = (sepBy (pfloat) ((spaces ...
1
vote
1answer
109 views
String and CharStream<'a> in FParsec
I would like to parse a big sentence, which can contain names in fsharp.
I posit that names is in the form first name + last name.
In the absence of a first name list (can't find, will do later), I ...
0
votes
1answer
184 views
Parsing on dates with F#
Are there some 'date parser' library that does for dates what FParsec does to strings ?
That is, you either specify rules and it will match against them to recognize the supplied patterns.
...
1
vote
1answer
125 views
FParsec styles; can someone demonstrate differences?
I am new to F#, about two months, and I recently finished the FParsec tutorial and started looking for more examples. The more I read the more confused I became, and then I started to see references ...
2
votes
1answer
228 views
FParsec Reactive Example
I'm hopeful that someone could potentially post an example of using FParsec where the data is based on some sort of incoming live stream.
Some examples could be producing a result based on mouse ...
0
votes
2answers
129 views
FParsec identifiers vs keywords
For languages with keywords, some special trickery needs to happen to prevent for example "if" from being interpreted as an identifier and "ifSomeVariableName" from becoming keyword "if" followed by ...
2
votes
1answer
191 views
Tail-recursion in FParsec
I have encounter a problem with parsers having two branches of recursion. To demonstrate the problem easier, I use a simple grammar of a lambda calculus from the article written by Luca Bolognese as ...
2
votes
1answer
158 views
Basic error recovery with FParsec
Assume I've this parser:
let test p str =
match run p str with
| Success(result, _, _) -> printfn "Success: %A" result
| Failure(errorMsg, _, _) -> printfn "Failure: %s" errorMsg
...
2
votes
1answer
229 views
Parsing parenthesized expressions
I have the following fsyacc grammar for (a slightly modified form of) SQL search conditions:
scalar_expr:
| ID { Identifier($1) }
| constant ...
4
votes
1answer
96 views
Using preprocessing function with identifier parser in FParsec?
I am using the identifier parser from FParsec to parse the names of variables and functions, which are normally a mixture of Unicode and ASCII characters. But sometimes I have escaped Unicode ...
0
votes
1answer
74 views
How to make identifier parser stop on operators of OperationPrecedenceParser in FParsec?
I am implementing a parser for identifier names that would consume unicode symbols. The problem I am facing is what I have some operators that are also written with unicode symbols and these might be ...
3
votes
2answers
77 views
Parse case-insensitive operators using OperatorPrecedenceParser
Is it possible to parse a non-symbolic operator (e.g., AND, OR) case-insensitively using OperatorPrecedenceParser?
2
votes
3answers
201 views
Differentiating logical from other infix operators
I'm trying to parse SQL search conditions and having trouble getting the parser to differentiate logical (AND, OR) from other infix operators. I'm parsing them as different nodes (perhaps that's ...
2
votes
1answer
132 views
Parsing function application with FParsec using OperatorPrecedenceParser?
The question is similar to this one, but I want to parse an expression with function application using the OperatorPrecedenceParser in FParsec.
Here is my AST:
type Expression =
| Float of float
...
1
vote
1answer
178 views
Parsing string literals with FParsec?
I would like to parse string literals using FParsec. By "string literals" I mean something between opening and closing quote (in my case -- single quote):
'Please, switch off your mobile phone'
...
3
votes
1answer
271 views
Parsing numbers in FParsec
I've started learning FParsec. It has a very flexible way to parse numbers; I can provide a set of number formats I want to use:
type Number =
| Numeral of int
| Decimal of float
| ...
8
votes
2answers
377 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. ...
2
votes
2answers
169 views
Can someone give an example of using chainl1 in FParsec?
This is the most puzzling combinator in all of FParsec...
http://www.quanttec.com/fparsec/reference/primitives.html#members.chainl1
...but there is no example on how to use it in the documentation ...
5
votes
1answer
262 views
Chunked Parsing with FParsec
Is it possible to submit input to an FParsec parser in chunks, as from a socket? If not, is it possible to retrieve the current result and unparsed portion of an input stream so that I might ...
3
votes
0answers
226 views
How to handle left recursion in FParsec
My languages uses s-expressions with one additional feature - a dot operator for accessing elements from an array or struct.
Currently, my parser works on this code using the access operator -
; ...
4
votes
1answer
183 views
How to resolve FParsec error “The combinator 'many' was applied to a parser that succeeds without consuming…”
I have a parser that seems straight-forward enough. I added this sub-parser to the end to give info about general parsing errors since all the other sub-parsers failed -
/// Read the rest of a line ...
1
vote
0answers
54 views
Simultaneous match in FParsec
If I'm trying to parse the following into lines and fields. Lines are delimited by '\n' and fields are delimited by '|'.
abcd|efgh|ijkl
mnopq\|rst|uvwxy
za|bcd
efg|hijk|lmnop
I can define the ...
3
votes
1answer
198 views
Parsing an optionally-multi-line expression with FParsec
I'm writing an FParsec parser for strings in this form:
do[ n times]([ action] | \n([action]\n)*endDo)
in other words this is a "do" statement with an optional time quantifier, and either a single ...
2
votes
3answers
151 views
Parsing into a complex type
I'm so new at F# and FParsec, I don't even want to embarrass myself by showing what I've got so far.
In the FParsec examples, every type in the ASTs (that I see) are type abbreviations for single ...
4
votes
1answer
271 views
How to parse comments with FParsec
I'm attempting to parse lisp-style comments from an s-expression language with FParsec. I got a bit of help with parsing single-line comments in this previous thread - How to convert an FParsec parser
...
1
vote
1answer
202 views
How to convert an FParsec parser
I'm implementing a parser that treats comments as white space with FParsec. It seems like it requires a trivial parser conversion, but I don't yet know how to implement that.
Here's the code I'm ...
6
votes
2answers
367 views
Are there any known parser combinator library's in F# that can parse binary (not text) files?
I am familiar with some of the basics of fparsec but it seems to be geared towards text files or streams.
Are there any other F# library's that can efficiently parse binary files? Or can fparsec be ...
2
votes
1answer
216 views
Should I use Workflow or fsYacc?
I have a very simple DSL I need to parse on a .Net platform. Not being very experienced with parsers, I have been looking at examples using F# (fsLex, fsYacc, FParsec). I am not that familiar with F#, ...
2
votes
1answer
159 views
How to build FParsec for .NET Compact Framework?
I’m writing a small application based on FParsec.
Today, I’m looking for an opportunity to make a version for Compact Framework.
Apparently, it is not that simple to build FParsec sources for .NET ...
0
votes
0answers
180 views
How to parse CIMPLICITY's ctx file
I have to parse CIMPLICITY's ctx file. Ctx file sample:
(Version 42)
(DocumentSummary)
(GmmiToplevelDocument
(GmmiDocumentObject
(GmmiContainerObject
(GmmiObject "" 0
(Help "" "" ...
3
votes
2answers
367 views
Improving the readability of a FParsec parser
I have a hand-written CSS parser done in C# which is getting unmanageable and was trying to do it i FParsec to make it more mantainable. Here's a snippet that parses a css selector element made with ...
1
vote
2answers
78 views
FParsec default error messages
Let's say I am defining the following parser:
let identifier = many1Satisfy isLetter //match an identifier
let parser = identifier //our parser is only to match identifiers
test parser " abc" //the ...
2
votes
1answer
193 views
Parsing method arguments with FParsec
I am trying to implement a method arguments parser with FParsec.
I was wondering if there is some already implemented feature in FParsec itself that'd aid me on this purpose? I ask this as FParsec ...
1
vote
2answers
421 views
“The value is not a function and cannot be applied.” error in F#
I was trying to run the following FParsec code, until by some reason it stopped working:
The error I am getting is
"The value is not a function and cannot be applied."
If I comment out the last ...
1
vote
1answer
199 views
Problems when trying to run FParsec in F# Interactive
I'm trying to run some FParsec code in F# Interactive but with no success. I am
able to build and run this tutorial.fs file, but the same isn't happening with FSI, as it didn't recognize FParsec.dll.
...
1
vote
2answers
441 views
What to choose fsyacc/fslex or FParsec?
I need to parse simple DSL language like the following:
import "library.txt"
def <int, bool, byte> main(int param1, bool param2)
{
var a = f4(param1); // or var d = f1(f2(f3(f4(param1))));
...
4
votes
2answers
302 views
Parsing simple types in FParsec
I'm trying to parse standard simple types (in the sense of lambda calculus) using FParsec, but I've having difficulty going from a Lex/Yacc style to that used in FParsec, specifically with respect to ...
