我有一个像这样的html文件:
<div id="id_1">
Some Texts
</div>
<div id ="id_2">
Some Texts
</div>
如何获取每个div id标签之间的所有文本?我的问题与WPF有关。
这是我的代码:
private void button_click(object sender, RoutedEventArgs e) {
HtmlDocument doc = new HtmlDocument();
doc.Load("file.html");
HtmlNode nodes = doc.DocumentNode.SelectNodes("//div[@id='id_1']");
var text = nodes.InnerText;
MessageBox.Show(text);
}
答案 0 :(得分:0)
我正在抓住这个来源:
<div id="id_1">
Some Texts 1
</div>
<div id ="id_2">
Some Texts 2
</div>
使用:
HtmlDocument doc = new HtmlDocument();
doc.Load("C:\\temp\\stackhtml.html");
int i = 1;
HtmlNodeCollection nodes = doc.DocumentNode.SelectNodes("//div");
foreach(HtmlNode node in nodes)
{
string text = node.InnerText;
Console.WriteLine("text" + i.ToString() + ": " + text);
i++;
}
Console.ReadLine();
结果:
你可以用你想要的字符串,填充和数组等....