Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 694 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 694 Bytes

xpath-stax

CircleCI

XPath expression markup built on top of StAX streaming parser

XPath syntax support is very limited on this version and can parse forward only.

The current supported notations are

  • /Root/Node/SubNode - Only fully qualified expressions starting from the root
  • /Root/Node[@attribute] - Supports predicate which find an attribute in any path of the node
  • /Root/Node[@attribute='value'] - Supports predicate which find attribute with matching value (String only supported)
  • /Root/Node/* - Registers all the children of the given node