vote up 0 vote down star

Is there a way to limit the depth DOMXPath::query will look at?

Consider the following document:

<div>
    <span>
        <div>
        </div>
    </span>
</div>

How could I limit the query

//div

So it only matches the first level and not the descendants?

flag

Now it’s invalid HTML. A inline-level element like span can not contain block-level elements like div. – Gumbo Nov 7 at 18:46

2 Answers

vote up 2 vote down check

This will select the div elements that are not inside of any other div elements (similar to Gumbo's answer, but will check all levels, not just direct parent)

//div[not(ancestor::div)]
link|flag
Excellent! You just saved me a recursive function. Thanks a lot! – Apikot Nov 7 at 23:47
vote up 2 vote down

Try to describe the path from the root (single /):

/path/to/first/level/div

Or try this:

//div[not(parent::div)]
link|flag
Apologies, it wasn't clear from my question that the parent element of the 2nd level or 3rd level is not necessarily a div, it could be any element. – Apikot Nov 7 at 18:45
@Aprikot: Then what is a first level div? – Gumbo Nov 7 at 18:49

Your Answer

Get an OpenID
or

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