Hope somebody can help me.
Let´s say I have a html document that contains multiple divs like this example:
<div class="search_hit">
<span prop="name">Richard Winchester</span>
<span prop="company">Kodak</span>
<span prop="street">Arlington Road 1</span>
</div>
<div class="search_hit">
<span prop="name">Ted Mosby</span>
<span prop="company">HP</span>
<span prop="street">Arlington Road 2</span>
</div>
I´m using HtmlAgilityPack to get the html document. What i need to know is how can i get the spans for each "search_hit"-div?
My first thought was something like this:
foreach (HtmlAgilityPack.HtmlNode node in doc.DocumentNode.SelectNodes("//div[@class='search_hit']"))
{
foreach (HtmlAgilityPack.HtmlNode node2 in node.SelectNodes("//span[@prop]"))
{
}
}
Each div should be a object with the included spans as properties. I. e.
public class Record
{
public string Name { get; set; }
public string company { get; set; }
public string street { get; set; }
}
And this List shall be filled then:
public List<Record> Results = new List<Record>();
But the XPATH i´m using is not doing a search in the subnode as it should do. It seams that it searches the whole document again and again.
I mean I already got it working in that way that i just get the the spans of the whole page. But then i have no relation between the spans and divs. Means: I don´t know anymore which span is related to which div.
Does somebody know a solution? I already played around that much that i´m totally confused now :)
Any help is appreciated!
If you use
//
, it searches from the document begin.Use
.//
to search all from the current nodeOr drop the prefix entirely to search just for direct children:
First of all, take a look at this: Html Agility Pack - Problem selecting subnode
Here is a full working solution for your question:
If you read the question I pointed you to, you will see that doing
./span[@prop='name']
is exactly the same, since thosespan
nodes are (direct) children of thediv
node.If the
span
nodes do not have thoseprop
attributes, and you want to assign them depending on the order they appear, you can do:The following works for me. The important bit is just as BeniBela noted to add a dot in second call to 'SelectNodes'.
I used that. class convert id
Shame on me :)
All of you were right.
I found the problem. This NullReferenceException kept nagging me so I spent more time to look at it in detail. In between all those divs there was one div with the same "class='search-hit'" attribute but without the spans inside. Thats why it throughs an error at the second loop.
The code above is working.
Thank you guys for your time and help!