使用 C# 如何获取网页上所有脚本标签(及其内容)的列表/数组?
我正在使用 HttpWebRequest 将远程网页放入字符串中,我想列出所有脚本标签(及其内容)以供解析。
做到这一点的最佳方法是什么?
I am using HttpWebRequest to put a remote web page into a String and I want to make a list of all it's script tags (and their contents) for parsing.
What is the best method to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好的方法是使用 HTML 解析器,例如 HTML Agilty Pack。
从网站:
The best method is to use an HTML parser such as the HTML Agilty Pack.
From the site:
使用 XML 解析器获取所有脚本标签及其内容。
像这样:简单的 xml
Use an XML parser to get all the script tags with their content.
Like this one: simple xml