jParsec Root

A parser combinator library in Java, modelled after Haskell' Parsec

License

License

GroupId

GroupId

org.jparsec
ArtifactId

ArtifactId

jparsec-root
Last Version

Last Version

3.1
Release Date

Release Date

Type

Type

pom
Description

Description

jParsec Root
A parser combinator library in Java, modelled after Haskell' Parsec
Project URL

Project URL

http://github.com/jparsec/jparsec
Project Organization

Project Organization

jparsec
Source Code Management

Source Code Management

http://github.com/jparsec/jparsec

Download jparsec-root

Filename Size
jparsec-root-3.1.pom 7 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/org.jparsec/jparsec-root/ -->
<dependency>
    <groupId>org.jparsec</groupId>
    <artifactId>jparsec-root</artifactId>
    <version>3.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.jparsec/jparsec-root/
implementation 'org.jparsec:jparsec-root:3.1'
// https://jarcasting.com/artifacts/org.jparsec/jparsec-root/
implementation ("org.jparsec:jparsec-root:3.1")
'org.jparsec:jparsec-root:pom:3.1'
<dependency org="org.jparsec" name="jparsec-root" rev="3.1">
  <artifact name="jparsec-root" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.jparsec', module='jparsec-root', version='3.1')
)
libraryDependencies += "org.jparsec" % "jparsec-root" % "3.1"
[org.jparsec/jparsec-root "3.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • jparsec
  • jparsec-examples
  • jparsec-testutils

jparsec

Builds mini parsers in pure Java.

Latest version: 3.0 (requires Java 8+)

News

2016-12-05

  • Removed references to Codehaus in copyright and package layout
  • Support for Java 8 now complete
  • Support for OSGi is merged in master, thanks to Alex Michael Berry and this PR

How to Use?

jparsec is available in maven-central. Snapshot Javadoc

Maven

Add the following fragment to your <dependencies> section:

If using Java 7-:

  <dependency>
    <groupId>org.jparsec</groupId>
    <artifactId>jparsec</artifactId>
    <version>2.3</version>
  </dependency>

If using Java 8+:

  <dependency>
    <groupId>org.jparsec</groupId>
    <artifactId>jparsec</artifactId>
    <version>3.1</version>
  </dependency>

Tell me more

Jparsec is a recursive-descent parser combinator framework written for Java. It's an implementation of Haskell Parsec on the Java platform.

Feature highlights

  • Operator precedence grammar,
  • Accurate error location and customizable error message,
  • Rich set of pre-defined reusable combinator functions,
  • Declarative API that resembles BNF.

Documentation

Look at the wiki for documentation on implementing parsers with jparsec.

Talking about jparsec

  • 2014-01-16 - Nantes JUG: Quickie on jparsec for local JUG
  • 2013-09-23 - JUGSummerCamp 2013: Directory parsing-made-easy contains material for the talk (slides + sample code)

Versions

Version
3.1
3.0
3.0-rc1
2.3
2.2.1