tridat
tridat

Reputation: 81

vb.net and html parsing

Currently I'm using the IHTMLDocument2 and IHTMLElementCollection to parse HTML, is there some way to parse it using some sort of xpath/selectors, something like

elements = find_html_elements("a .link[rel=100]") ?

Upvotes: 0

Views: 597

Answers (1)

Oded
Oded

Reputation: 499002

You can download and use the HTML agility pack - it supports Xpath.

Upvotes: 2

Related Questions