fparsec
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.[详细]
2023-04-10 15:05 分类:问答How to parse CIMPLICITY's ctx file
I have to parse CIMPLICITY\'s ctx file. Ctx file sample: (Version 42) (DocumentSummary) (GmmiToplevelDocument[详细]
2023-04-08 18:50 分类:问答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[详细]
2023-04-06 15:46 分类:问答FParsec default error messages
Let\'s say I am defining the following parser: let identifier = many1Satisfy isLetter //match 开发者_如何学Goan identifier[详细]
2023-03-31 16:43 分类:问答Parsing method arguments with FParsec
I am trying开发者_StackOverflow 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 a[详细]
2023-03-30 17:16 分类:问答Problems when trying to run FParsec in F# Interactive
I\'m trying to run some FParsec code in F# Int开发者_StackOverflow中文版eractive but with no success. I am[详细]
2023-03-29 13:07 分类:问答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 t[详细]
2023-03-22 04:33 分类:问答How can I express a type in F# that optionally recurses on itself (infinitely)
As a learning exercise I am try开发者_如何学Cing to implment a parser for the graphviz dot language (The DOT language) using the functional parser library fparsec (FParsec). The language describes gra[详细]
2023-03-14 14:52 分类:问答parsing if / else / if statements
I\'m trying to replicate the structure of a simple if statement: if (paren) { block } [else ({ block } | rec if (paren)) ][详细]
2023-03-13 07:06 分类:问答Position information in fparsec
My AST model needs to carry location information (filename, line, index). Is there any built in way to access this information? From the reference docs, the stream seems to carry t开发者_Go百科he posi[详细]
2023-03-13 05:08 分类:问答