KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
xpath2-parser
★ 14
Open GitHub ↗
A libre parser for XPath 2.0 in Java
Download README (.md)
Explore Similar Repositories
pwyc
:
以前的伪原创类,放这做个纪念,仅此。
keycloak-httpd-client-install
:
Python support for Keycloak
MayaRigTools
:
Some scripts to get a rigging workflow closer to the Softimage one
service-handbook
:
The DTO's guide to building digital services
spiking-ratslam
:
Modifying RatSLAM to use a spiking neural network and spiking cameras
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
xpath2-parser
?
Download (.md)
XPath Parser ============ [](https://github.com/exquery/xpath2-parser/actions/workflows/ci.yml) [](http://java.oracle.com) [](https://www.gnu.org/licenses/gpl-2.0.html) This library implements a complete XPath 2 Parser in Java 11, using [Parboiled](https://github.com/sirthias/parboiled). The parser generates an AST (Abstract Syntax Tree) which you can then use in your own application for whatever you wish. The class [XPathUtil](https://github.com/exquery/xpath2-parser/blob/master/src/main/java/com/evolvedbinary/xpath/parser/XPathUtil.java) shows how the parser can be used. You can also execute `XPathUtil` as an application if you want to understand the node-tree produced by the parser. Obtaining --------- The [compiled artifact](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.evolvedbinary.xpath%22%20AND%20a%3A%22xpath2-parser%22) can be obtained from Maven Central by adding the following to the `<dependencies>` section of your `pom.xml`: ```xml <dependency> <groupId>com.evolvedbinary.xpath</groupId> <artifactId>xpath2-parser</artifactId> <version>1.0</version> </dependency> ``` If you are a Scala, Groovy or Clojure person then you can still use the artifact from Maven Central with your favourite build tool, however I will assume you know what your doing ;-) Future Work ----------- * Provide some tutorials or better documentation * Update this to XPath 3.1...