0

I have to extract some information from html web page which contains the following table :

//Http://www.example.com/12.html
//<html ... >
<table>
<tr>
<td>HIIIIIIIIIII</td> // this is what I need from this page
</tr>
<tr><td>bla bla bla</td></tr>
</table>

any Ideas ?
Thank u

Suman Banerjee
  • 1,923
  • 4
  • 24
  • 40
Rawhi
  • 6,155
  • 8
  • 36
  • 57

1 Answers1

9

You should have a look at the Html Agility Pack, which provides good ways of parsing/reading HTML (even badly formed)

On this S.O. question, you can find a sample of how to extract table data. And this question contains sample of usage with LINQ.

carla
  • 1,970
  • 1
  • 31
  • 44
Shimrod
  • 3,115
  • 2
  • 36
  • 56