使用 htmlagilitypack 获取特定标签后面的 p 标签
我正在使用 htmlagilitypack c# 抓取一个网站:
i have in the source code of an html page
....
<p>this a p that come before h3</p>
....
....
<h3>this h3 </h3>
<p>first p after h3</p>
....
<p>seconde p after h3</p>
我想获取所有随后出现的 Ps
,有没有一种方法可以使用位置来过滤 Ps。
其中(位置(p)>位置(h3))
I'm crawling a website using htmlagilitypack c#:
i have in the source code of an html page
....
<p>this a p that come before h3</p>
....
....
<h3>this h3 </h3>
<p>first p after h3</p>
....
<p>seconde p after h3</p>
i want to to all get all Ps that come after
is there a way to use a where to filter Ps using position.
where (position(p)>position(h3))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用如下所示的辅助方法:
然后使用它:
You could use a helper method such as this:
Then to use it:
尝试以下代码:
Try the following code: