26
1
using System;
2
using HtmlAgilityPack;
3
using System.Linq;
4
5
public class Program
6
{
7
// description: Showing here how to parse complex web HTML table using HTML Agility Pack C#
8
public static void Main()
9
{
10
// declare object of HtmlDocument
11
HtmlDocument doc = new HtmlDocument();
12
doc.LoadHtml(@"<table id=""TC""><tr><th>Name</th></tr><tr><td>Technology</td></tr><tr><td>Crowds</td></tr></table>");
13
14
// Using LINQ to parse HTML table smartly
15
var HTMLTableTRList = from table in doc.DocumentNode.SelectNodes("//table").Cast<HtmlNode>()
16
from row in table.SelectNodes("tr").Cast<HtmlNode>()
17
from cell in row.SelectNodes("th|td").Cast<HtmlNode>()
18
select new {Table_Name = table.Id, Cell_Text = cell.InnerText};
19
20
// now showing output of parsed HTML table
21
foreach(var cell in HTMLTableTRList)
22
{
23
Console.WriteLine("{0}: {1}", cell.Table_Name, cell.Cell_Text);
24
}
25
}
26
}
Cached Result
Compilation error (line 17, col 32): Could not find an implementation of the query pattern for source type 'object'. 'Select' not found.