I'm working on Windows Phone 8 device and try to parse html document with html agility pack from http://www.livescience.com/41480-3d-printed-kidneys-take-small-steps.html I can get the <title>
tag easily but now I want to get the whole <p>
tags from that document. I've tried these two solution one and two but it not work. This is my actual code from based on those solutions
private void loadDoc()
{
try
{
HtmlWeb.LoadAsync("http://www.livescience.com/41480-3d-printed-kidneys-take-small-steps.html", Html_Completed);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void Html_Completed(object sender, HtmlDocumentLoadCompleted e)
{
doc = e.Document;
title = doc.DocumentNode.SelectSingleNode("//title");
p = doc.DocumentNode.SelectNodes("//p");
foreach(var node in p)
{
pr = node.InnerText; //that's the text you are looking for
}
text1.Text = title.InnerText;
if (!pr.Equals("") && pr != "")
{
text2.Text = pr;
}
else
{
MessageBox.Show("null");
}
}
I use if
block to determine whether the foreach
returns null. Does anybody know how to solve this problem? I will appreciate any help. Thank you.