Is there a way to get the values within a tag using HTMLAgilityPack?
My variable dataNode
is an HtmlAgilityPack.HtmlNode
and contains:
Dim doc as New HtmlAgilityPack.HtmlDocument()
doc.LoadHtml("
<div id="container" data="id:12,country:usa,city:oregon,id:13,country:usa,city:atlanta">
<a href="http://www.google.com">Google</a>
</div>
")
Would like to get the value of each id
, country
,city
. They repeat within the tag and have different values.
Dim dataNode as HtmlAgililtyPack.HtmlNode
dataNode = doc.documentNode.SelectSingleNode("//div")
txtbox.text = dataNode.Attributes("id[1]").value
This gives an error System.NullReferenceException
You need the
"data"
attribute, not the"id"
attribute.Once you have the value of the correct attribute, you will need to parse it into some data structure suitable for holding each part of the data, for example:
Which outputs:
It is resistant to some data malformations, such as id/city/country being in a different order, and spurious data at the end.
You would, of course, put the parsing code into its own function.