Subject: Re: Using position predicate in XPath string within selectSingleNode DOM method
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 24 Nov 2004 11:44:40 GMT
|
In sarissa i implement the selectSingleNode by appending '[1]' to the
xpath expression then calling selectNodes. Maybe MSXML's implementation
has the same flaw ;-)
do you wrap the expression in () before appending [1] (you need to)
(/a/b/c)[1]
will select at most 1 node
/a/b/c[1]
will select all c nodes that are the first child of a b.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|