vote up 4 vote down star

given this simplified data format:

<a>
    <b>
        <c>C1</c>
        <d>D1</d>
        <e>E1</e>
        <f>don't select this one</f>
    </b>
    <b>
        <c>C2</c>
        <d>D2</d>
        <e>E1</e>
        <g>don't select me</g>
    </b>
    <c>not this one</c>
    <d>nor this one</d>
    <e>definitely not this one</e>
</a>

How would you select all the Cs, Ds and Es that are children of B elements?

Basically, something like:

a/b/(c|d|e)

In my own situation, instead of just "a/b/", the query leading up to selecting those C,D,E nodes is actually quite complex so I'd like to avoid doing this:

a/b/c|a/b/d|a/b/e

...if that's possible?

flag

67% accept rate

3 Answers

vote up 4 vote down check

One correct answer is:

     /a/b/*[self::c or self::d or self::e]

Do note that another answer that still has some positive votes, its author initially removed it but later put it back again:

a/b/*[local-name()='c' or local-name()='d' or local-name()='e']

is both too-long and incorrect. This XPath expression will select nodes like:

  • OhMy:c

  • NotWanted:d

  • QuiteDifferent:e

link|flag
vote up 3 vote down

You can avoid the repetition with an attribute test instead:

a/b/*[local-name()='c' or local-name()='d' or local-name()='e']

Contrary to Dimitre's antagonistic opinion, the above is not incorrect in a vacuum where the OP has not specified the interaction with namespaces. The self:: axis is namespace restrictive, local-name() is not. If the OP's intention is to capture c|d|e regardless of namespace (which I'd suggest is even a likely scenario given the OR nature of the problem) then it is "another answer that still has some positive votes" which is incorrect.

You can't be definitive without definition, though I'm quite happy to delete my answer as genuinely incorrect if the OP clarifies his question such that I am incorrect.

link|flag
Calling the facts "antagonistic opinion" is something deplorable. If you are not sure whether your answer is correct or not, then why in the first place should you submit such an answer? – Dimitre Novatchev Apr 7 at 16:19
Doesn't the fact which answer is accepted demonstrate with absolute clarity which answer the OP considers correct? – Dimitre Novatchev Apr 7 at 16:20
My very clearly made point is that neither you nor I can be definitive, and that your downvote is misplaced since my answer is not outright wrong. The fact the OP accepts an answer is irrelevant, since he cannot accept both, both will work for most cases, and mine was deleted at the time. – annakata Apr 7 at 16:24
Further, I am saying that I contest your so called "facts", and it is my opinion that you are being transparently antagonistic. What purpose do your comments "still has positive votes" and "I explain why the one that is most voted at the moment is incorrect" serve? – annakata Apr 7 at 16:26
Both these comments you are asking about serve the truth: to clearly show what is correct and what is incorrect -- and in this case it can be exactly determined. As for "offensive", please use a dictionary. There is nothing offensive in revealing the truth. The reverse is really offensive. – Dimitre Novatchev Apr 7 at 22:47
show 2 more comments
vote up 0 vote down

Not sure if this helps, but with XSL, I'd do something like:

<xsl:for-each select="a/b">
    <xsl:value-of select="c"/>
    <xsl:value-of select="d"/>
    <xsl:value-of select="e"/>
</xsl:for-each>

and won't this XPath select all children of B nodes:

a/b/*
link|flag
Thanks Calvin, but I'm not using XSL, and there are actually more elements underneath B which I don't want to select. I'll update my example to be clearer. – nickf Apr 6 at 15:43
Oh, well in that case annakata seems to have the solution. – Calvin Apr 6 at 15:51

Your Answer

Get an OpenID
or

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