Question

I want to scrape a list of facts from simple website. Each one of the facts is enclosed in a <li> tag. How would I do this using Html Agility Pack? Is there a better approach?

The only things enclosed in <li> tags are the facts and nothing else.

Was it helpful?

Solution

Something like:

List<string> facts = new List<string>();
foreach (HtmlNode li in doc.DocumentNode.SelectNodes("//li")) {
    facts.Add(li.InnerText);
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top