vote up 4 vote down star

Presuming that I don't know the name of my base node or its children, what is the XPath syntax for "all nodes exactly one below the base node?"

With pattern being an XmlNode, I have the following code:

XmlNodeList kvpsList = pattern.SelectNodes(@"//");

Which looks right to me, but I get the following exception:

   System.Xml.XPath.XPathException: Expression must evaluate to a node-set.

What is the correct syntax?

flag

The currently accepted answer by Weblog and the one by Jweede are both incorrect. See my answer. – Dimitre Novatchev Mar 27 at 23:28

3 Answers

vote up 5 vote down check

The two current answers are wrong:

/*/*

does not select all nodes that are children of the top node. It does not select any text nodes, processing-instructions or comments that are children of the top element.

One XPath expression that select all nodes that arte children of the top element is:

/*/node()

// is not a syntactically correct XPath expression; according to the XPath Spec:

// is short for /descendant-or-self::node()/

Do note the beginning of an unfinished location step at the very end of the expanded abbreviation. If nothing is added to it, the whole XPath expression containing the abbreviation is finished and, therefore, syntactically incorrect.

Another note is that the // abbreviation is not necessary in specifying the selection of all nodes that are children of the top element. If you wanted to select all nodes in the XML document that descend from the top element, then one XPath expression that select these is:

/*//node()

link|flag
vote up 8 vote down

The path you're looking for is

/*/*

// isn't a meaningful XPath expression, since it is an operator. If you wrote something like //element, it would match every element named element anywhere in the XML document, no matter how deep into the hierarchy it is.

/*/* is saying "match every node that has two levels of depth in the hierarchy".

link|flag
vote up 1 vote down

Xpath: /*/* should select all nodes from root that are exactly one below the base node.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.