gpt4 book ai didi

php - 使用 XPATH 删除


转载 作者:可可西里 更新时间:2023-11-01 13:21:40 25 4
gpt4 key购买 nike

我使用 xpath 删除 <p>&nbsp;</p>

    $nodeList = $xpath->query("//p[text()=\"\xC2\xA0\"]"); # &nbsp;
foreach($nodeList as $node)
{
$node->parentNode->removeChild($node);
}

但它不会删除这个,

<p><strong><br /> &nbsp;</strong></p>

还是这种,

<p><strong>&nbsp;</strong></p>

我怎样才能删除它们?

或者也许是我应该使用的正则表达式?

最佳答案

试试

$nodeList = $xpath->query("//p[normalize-space(.)=\"\xC2\xA0\"]"); # &nbsp;
foreach($nodeList as $node)
{
$node->parentNode->removeChild($node);
}

引用 from the docs

The normalize-space function returns the argument string with whitespace normalized by stripping leading and trailing whitespace and replacing sequences of whitespace characters by a single space.

关于php - 使用 XPATH 删除 <p><strong><br/> </strong></p>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7856414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com