F# implementation of a generic Top-Down-Operator-Precedence Parser as described in this paper http://portal.acm.org/citation.cfm?id=512931 Example starts at line ~300
88 people like thisPosted: 13 years ago by fholm
Parser for Tom's Obvious, Minimal Language (https://github.com/mojombo/toml).
5 people like thisPosted: 11 years ago by nagat01
Based on Uncle Bob's State Machine Compiler for Clean Code video series, parser implemented with FParsec, see https://github.com/unclebob/CC_SMC for the Java implementation.
8 people like thisPosted: 9 years ago by Phillip Trelford
HttpListener + FParsec + Pattern Matching = Simple REST Endpoints
3 people like thisPosted: 9 years ago by Ted Cackowski Jr
Parses the schema string format used by the CSV Type Provider from the FSharp.Data library ...because sometimes you need the metadata. Support for names with underscore
5 people like thisPosted: 5 years ago by Faisal Waris
Spreadsheet script runnable inside http://tryfsharp.org includes a custom DataGrid and a parser for simple formulas e.g.: =1+1 =SUM(A1,A2) Add your own functions to the evaluate function. For a more comprehensive implementation check out http://cellz.codeplex.com
6 people like thisPosted: 13 years ago by Phillip Trelford
Untyped version of toml parser. The lines of code was reduced 173 to 45. It's based on some implementations in other languages (https://github.com/mojombo/toml#implementations). I was surprised that even a parser written in Objctive-c was simpler than mine (http://fssnip.net/jd). Then I read some others code and found that removing types which describes toml values simplifies the implementation. The code may seem little crazy, but I'm fine :)
0 people like thisPosted: 11 years ago by nagat01
Based on Uncle Bob's State Machine Compiler for Clean Code video series, parser implemented with FParsec, see https://github.com/unclebob/CC_SMC for Uncle Bob's Java implementation.
7 people like thisPosted: 9 years ago by Phillip Trelford
Identify user's browser, Os and device by the browser's UserAgent string.
3 people like thisPosted: 5 years ago by Tuomas Hietanen