HtmlAgilitypackでLinqを使用して、bodyタグからpタグの後ろにテキストを取得するにはどうすればよいですか?htmlagilityがxpathをサポートしていないと人々が言うかどうかはわかりません。HTMLコードを解析します。
質問する
289 次
1 に答える
0
HtmlAgility を使用する最も簡単な方法 ->
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(string); //string contains the html code
var paragraphTags = doc.DocumentNode.SelectNodes("p"); //selects all p tags
for (int i = 0; i < paragraphTags.Count; i++) //loop through the p tags
{
String text = paragraphTags[i].InnerHtml;
//text has your paragraph content. use it here.
}
于 2012-12-08T01:21:42.100 に答える