使用asp.net解析锚标记
当解析一堆纯文本格式的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 alla
nodes.正则表达式很好。不过,我发现 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.