In PHP, i want to get all DOMElement containing a given text.

I get DOMText when $xpath->query("//text()[contains(., 'My String')]"), but which query must i perform for getting DOMElement instead?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Use:

(//*[text()
      [contains(., 'My String')]
   ]
 )[1]

This selects the first element in the XML document that has a text node child that contains the string "My String".

If it is guaranteed that only one such element exist, the above expression can be simplified to:

//*[text()
      [contains(., 'My String')]
   ]

If the elements you are looking for are guaranteed to have just a single text-node child, this expression can be simplified to:

(//*[contains(., 'My String')])[1]

respectively:

//*[contains(., 'My String')]
link|improve this answer
Just what i needed, thank you! – TMichel Jan 11 at 18:59
@TMichel: You are welcome. Please, consider to accept this answer (click on the check-mark next to the answer). – Dimitre Novatchev Jan 11 at 19:20
feedback

Using your supplied xpath query, you can access the DOMElements containing 'My String' using the DOMNode::parentNode property like so:

$els = $xpath->query("//text()[contains(., 'My String')]");
foreach ($els as $el) {
  $parent = $el->parentNode;
  echo $parent->nodeValue, "\n";
}
link|improve this answer
feedback

Try a path like //text()[contains(., 'My String')]/...

link|improve this answer
Martin, usually there is an expression that doesn't contain reverse axis. – Dimitre Novatchev Dec 31 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

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