如何使用正则表达式获取字符串的包装元素

时间:2012-07-31 06:22:44

标签: php regex preg-match

  

可能重复:
  get wrapping element using preg_match php

我想获取包装指定字符串的元素,例如:

$string = "My String";
$code = "<div class="string"><p class='text'>My String</p></div>";

那么我怎样才能通过使用正则表达式匹配字符串来获取包裹字符串的<p class='text'></p>

1 个答案:

答案 0 :(得分:0)

使用PHP的DOM类,你可以这样做。

$html = new DomDocument();
// load in the HTML
$html->loadHTML('<div class="string"><p class=\'text\'>My String</p></div>');
// create XPath object
$xpath = new DOMXPath($html);
// get a DOMNodeList containing every DOMNode which has the text 'My String'
$list = $xpath->evaluate("//*[text() = 'My String']");
// lets grab the first item from the list
$element = $list->item(0);

现在我们有了整个<p> - 标签。但我们需要删除所有子节点。这里有一个小功能:

function remove_children($node) {
  while (($childnode = $node->firstChild) != null) {
    remove_children($childnode);
    $node->removeChild($childnode);
  }
}

让我们使用这个功能:

// remove all the child nodes (including the text 'My String')
remove_children($element);

// this will output '<p class="text"></p>'
echo $html->saveHTML($element);