I'm using HtmlAgilityPack and I want to get the inner text between two specific tags, for example:

<a name="a"></a>Sample Text<br>

I want to get the innertext between and
tags: Sample Text

How can I do it?

TIA...

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Once you have reached the anchor you could use the NextSibling property:

Dim doc = New HtmlDocument()
doc.LoadHtml("<html><body><a name=""a""></a>Sample Text<br></body></html>")
Dim a = doc.DocumentNode.SelectSingleNode("//a[@name=""a""]")
Console.WriteLine(a.NextSibling.InnerText)
link|improve this answer
Thanks a lot buddy! – Michael Ropy Sep 3 '11 at 7:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.