| René Nyffenegger's collection of things on the web | |
|
René Nyffenegger on Oracle - Most wanted - Feedback
|
// in XPath | ||
|
//elem-name finds all elements named elem-name.
The XML file:
<a>one
<b>two
<c>three
<d>four
<e>five
</e>
</d>
</c>
</b>
<e>six
</e>
</a>
The XPath expression
//e finds two elements named e: the one with six and the one with five.
|