使用asp.net解析锚标记

发布于 2024-08-16 22:50:01 字数 65 浏览 5 评论 0原文

当解析一堆纯文本格式的 html 时,正则表达式是提取和检查所有锚标记的最佳方法还是 .net 库中内置了任何内容?

When parsing a bunch of html in plain text format, is regex the best way to extract and examine all anchor tags or is there anything built into the .net lib?

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

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

发布评论

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

评论(2

灼痛 2024-08-23 22:50:01

RegEx 是你的朋友。 BCL 中没有内置 HTML 解析器。

如果您输入的是XHTML(或符合XML),则可以使用XML 和XPath。将文档加载到 XmlDocument< /a> 并选择所有 a 节点。

RegEx is you pal here. There is no HTML parser built into the BCL.

If your input it XHTML (or XML conformant), you can use XML and XPath. Loading the document into a XmlDocument and selecting all a nodes.

独自唱情﹋歌 2024-08-23 22:50:01

正则表达式很好。不过,我发现 HTML 敏捷包 更宽容一些,这就是我在这种情况下使用的。

Regex is good. However I find the HTML agility pack to be a little more forgiving and is what I would use in this situation.

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