tags:

views:

91

answers:

1

I need to grab a table from a HTML to get the data contained in the table. I've learned from you that it can be solved easily by Perl's HTML::TableExtract. Since the grabbed data will be showed off by "C#" , so if there is C# equivalent to Perl's HTML::TableExtract, it will easier for me to implement the whole app.

+1  A: 

http://www.codenewsgroups.net/group/microsoft.public.dotnet.framework.aspnet.webcontrols/topic8430.aspx

http://mhinze.com/archive/screen-scraping-tutorial-using-c-net/

http://www.codeproject.com/KB/aspnet/weather.aspx

http://bytes.com/topic/c-sharp/answers/529096-how-read-contents-html-table-net

abmv
None of these come close to replicating the functionality of `HTML::TableExtract`. They are way too simplistic compared to what `HTML::TableExtract` does for you.
Sinan Ünür
Please note that I was only trying to help the gentleman conclude to some solution in C# he could improve on it from these examples,they may be simple but it shows how he could grab a table from a HTML to get the data contained in the table.
abmv