
XPath
XPath is a language for finding information in an XML document. XPath uses path expressions to navigate in XML documents. XPath is a W3C recommendation
The basic XPath syntax is similar to filesystem addressing. If the path starts with the slash / , then it represents an absolute path to the required element.
/AAA
Select the root element AAA
...