选择nodeValue但排除子元素

发布于 2025-01-03 09:35:08 字数 409 浏览 0 评论 0原文

假设我有以下代码:

<p dataname="description">
Hello this is a description. <a href="#">Click here for more.</a>
</p>

如何选择 p 的 nodeValue 但排除 a 及其内容?

我当前的代码:

$result = $xpath->query("//p[@dataname='description'][not(self::a)]");

我通过 $result->item(0)->nodeValue; 选择它

Let's say I have this code:

<p dataname="description">
Hello this is a description. <a href="#">Click here for more.</a>
</p>

How do I select the nodeValue of p but exclude a and it's content?

My current code:

$result = $xpath->query("//p[@dataname='description'][not(self::a)]");

I select it by $result->item(0)->nodeValue;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一口甜 2025-01-10 09:35:09

只需将 /text() 附加到您的查询中就可以解决问题

$result = $xpath->query("//p[@dataname='description'][not(self::a)]/text()");

Simply appending /text() to your query should do the trick

$result = $xpath->query("//p[@dataname='description'][not(self::a)]/text()");
无远思近则忧 2025-01-10 09:35:09

不确定 PHP 的 XPath 是否支持这一点,但是这个 XPath 在 Scrapy(基于 Python 的抓取框架)中为我解决了这个问题:

$xpath->query('//p[@dataname='description']/text()[following-sibling::a]')

如果这不起作用,请尝试 Kristoffers 解决方案,或者您也可以使用正则表达式解决方案。例如:

$output = preg_replace("~<.*?>.*?<.*?>~msi", '', $result->item(0)->nodeValue );

这将删除其中包含任何内容的所有 HTML 标记,不包括未由 HTML 标记封装的文本。

Unsure if PHP's XPath supports this, but this XPath does the trick for me in Scrapy (Python based scraping framework):

$xpath->query('//p[@dataname='description']/text()[following-sibling::a]')

If this doesn't work, try Kristoffers solution, or you could also use a regex solution. For example:

$output = preg_replace("~<.*?>.*?<.*?>~msi", '', $result->item(0)->nodeValue);

That'll remove any HTML tag with any content in it, excluding text which is not encapsulated by HTML tags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文