Found 14 packages
FParsec is a parser combinator library for F#. You can find comprehensive documentation for FParsec at http://www.quanttec.com/fparsec. The documentation includes a feature list, a tutorial, a user’s guide and an API reference. This package uses the basic “low-trust” configuration of FParsec, which does not use any unverifiable code and is optimized for maximum portability. If you need to parse very large files or if you employ FParsec for performance-critical jobs, consider using the alternate “Big Data Edition” NuGet package (see https://nuget.org/packages/fparsec-big-data-edition).
A library for building FParsec parsers using pipeline operators.
FParsec.CSharp is a thin C# wrapper for FParsec. Documentation: https://github.com/bert2/FParsec.CSharp Release notes: Reference FParsec 2.0.0-beta.
FParsec is a parser combinator library for F#. You can find comprehensive documentation for FParsec at http://www.quanttec.com/fparsec. The documentation includes a feature list, a tutorial, a user’s guide and an API reference. This package uses a configuration of FParsec that supports very large input streams and is optimized for maximum performance in longer running processes. See http://www.quanttec.com/fparsec/download-and-installation.html for more information. This version of FParsec is currently not compatible with .NET Core. If you want to use .NET Core, please choose the other FParsec NuGet package instead (see https://nuget.org/packages/fparsec).
Package Description
A library for building FParsec parsers using pipeline operators.
Parse excel file with combinator
Concise monadic parser combinator library with separate lexer/parser phases and big-size input support.
Nadapa is a small utility library that can be used for extracting DateTime objects from natural language text.
Parser to read INI configuration files. This file format is less verbose to load initialization configuration such as database connections, server ports, ids and paths.
A library for creating and analyzing context-free grammars (CFGs) and implementing parser-generators.
A a one-file recursive parser combinator for F# and Fable.
A generalized parser combinator based off of fparsec. ParsecClone works on strings as well as binary files (with bit level parsing)
* Define string.format-like templates using *named* tokens. * A fluent API that makes template configuration clear and intuitive. * Access properties and parameterless methods of input values using a simple syntax. * Use delegates to process inputs. Tell your template to join a list, make a string uppercase, or calculate a difference -- decleratively. * No awkward string-based syntax that needs to be learned, and no tables you need to search through to find the type of formatting you need. All processing syntax is 100% language integrated. * All objects are totally immutable. No need to worry about thread-safety. * High-performance parser written using the FParsec parser-combinator library that performs a single pass on the input. Performs exponentially better than regex-based solutions.