需要在 C# 中使用 HTMLAgilityPack 一些 HTML 元素 - 如何做?
我有以下场景:
<a href="test.com">Some text <b>is bolded</b> some is <b>not</b></a>
现在,如何获取“test.com”部分和文本的锚点,而不需要粗体部分?
I have the following scenario:
<a href="test.com">Some text <b>is bolded</b> some is <b>not</b></a>
Now, how do I get the "test.com" part and the anchor of the text, without having the bolded parts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设以下标记:
您可以执行以下操作:
prints:
当然,您可能想通过向您尝试获取的锚点提供唯一的 id 或类名来调整您的
SelectSingleNode
XPath 选择器:Assuming the following markup:
You could perform the following:
prints:
Of course you probably wanna adjust your
SelectSingleNode
XPath selector by providing an unique id or a classname to the anchor you are trying to fetch: