views:

690

answers:

1
<div>
<b>Token1</b>
Token2
<b>Token3</b>
</div>

I try to extract Token2 from the div

I manage to get Token1 and Token3 with :

HtmlNodeCollection headerFooter = doc.DocumentNode.SelectNodes("//div//b");

How can I extract directly Token2 with HTMLAgilityPack ?

One dirty option is to replace Token1 and Token2 by string.empty in doc.DocumentNode.SelectNodes("//div").InnerText, but I imagine it can been done in more clean way with HTMLAgilityPack...

+3  A: 

The text is in the text nodes; so you should be able to look at "//div/text()" and concatenate:

StringBuilder sb = new StringBuilder();
foreach (HtmlAgilityPack.HtmlTextNode node in
      doc.DocumentNode.SelectNodes("//div/text()"))
{
    sb.Append(node.Text.Trim());
}
string s = sb.ToString();
Marc Gravell
Even using text() I will have Token1 and Token3.
No you won't... unless you do //text() or //div/*/text(); //div/text() returns *only* those directly under the divs. Or for a specific element, SelectNodes("text()")
Marc Gravell
Or in other words... try it ;-p
Marc Gravell
You are right... I tried with //div//text()THANK YOU !!!