XPath
XML Path Language - XPath - is a query language for selecting nodes from an XML document.
Example
For some XML like this:
<root>
<node>
<target />
</node>
</root>
the XPath to target would be
/root/node/target
XML Path Language - XPath - is a query language for selecting nodes from an XML document.
For some XML like this:
<root>
<node>
<target />
</node>
</root>
the XPath to target would be
/root/node/target