有没有办法解析HTML或将HTML转换为XML,以便我轻松地从网站中提取信息?
我正在使用C#。
谢谢,
答案 0 :(得分:6)
您可以使用Microsoft HTML Object Library
中的COM对象加载HTML,然后使用它的对象模型进行导航。示例如下所示:
string html;
WebClient webClient = new WebClient();
using (Stream stream = webClient.OpenRead(new Uri("http://www.google.com")))
using (StreamReader reader = new StreamReader(stream))
{
html = reader.ReadToEnd();
}
IHTMLDocument2 doc = (IHTMLDocument2)new HTMLDocument();
doc.write(html);
foreach (IHTMLElement el in doc.all)
Console.WriteLine(el.tagName);
答案 1 :(得分:5)