Xml Xpath Editor
QXmlEdit is a simple XML editor based on Qt libraries. Its main features are unusual data visualization modes, nice XML manipulation and presentation and it is multi platform. It can split very big XML files into fragments, and compare XML and XSD files. This most user-friendly online tool enables you to interactively and secretly query XML/HTML documents using XPath 2.0. It can generate queries for you too!
Allows you to test your XPath expressions/queries against a XML file. This tool runs better than other existing XPath online tools as it supports most of the XPath functions (string(), number(), name(), string-length() etc.) and does not limit you to working against nodes. It fully supports XPath 2.0 / 3.0 specification. See the XPath Examples section for details.
The XPath tester fully supports XML namespaces. See the XPath Examples section for details. The namespace prefix 'fn' and 'math' are reserved to XPath functions.
*The maximum size limit for file upload is 2 megabytes. Results bigger than 500k will be written to a new window for performance reason and to prevent your browser from being unresponsive.
XPath Examples
All of the following examples use this sample XML code. You can find more documentation on XPath expressions at W3Schools.com
Xml Xpath Editor Tutorial
1. Select the document node
/2. Select the 'root' element
/root3. Select all 'actor' elements that are direct children of the 'actors' element.
/root/actors/actor4. Select all 'singer' elements regardless of their positions in the document.
//foo:singer5. Select the 'id' attributes of the 'singer' elements regardless of their positions in the document.
//foo:singer/@id6. Select the textual value of first 'actor' element.
//actor[1]/text()7. Select the last 'actor' element.
