Evaluate XPath expressions against XML data in real-time. 100% client-side.
| Expression | Description |
|---|---|
| /root/child | Select child of root |
| //element | Select all matching elements anywhere |
| @attribute | Select an attribute |
| [predicate] | Filter nodes by condition |
| text() | Select text content |
| * | Wildcard — any element |
| | | Union of two node sets |
| position() | Position of context node |
| count() | Count matching nodes |
| contains(str, sub) | String contains test |