XPATH help

Questions about XML that are not covered by the other forums should go here.
atp2bdb
Posts: 1
Joined: Thu Jul 21, 2005 5:48 pm

XPATH help

Post by atp2bdb »

I have an XML document that contains elements that have an attribute TimeStamp. Is there a way to use XPATH to search my xml file for TimeStamps in a certain range?
Radu
Posts: 9018
Joined: Fri Jul 09, 2004 5:18 pm

Post by Radu »

Hi,

For this XML file:

Code: Select all


<root>
<a id="1"/>
<a id="2"/>
<a id="3"/>
</root>
The following XPath

Code: Select all

//a[@id < 3 and @id >1]
gives as result the node a with id = 2.

Hope this helps.
Regards, Radu.
Post Reply