Hello, I need to parse a html file and extract the NeedThis* strings with C#/.net, sample code is:
<tr class="class">
<td style="width: 120px">
<a href="NeedThis1">NeedThis2</a>
</td>
<td style="width: 120px">
<a href="NeedThis3">
NeedThis4</a>
</td>
<td style="width: 30%">
NeedThis5
</td>
<td>
NeedThis6
</td>
<td style="width: 120px">
NeedThis7
</td>
</tr>
I know a html parser should be better here, but all I need is to extract these texts, this is just for a temp helper tool...
anyone can help me with this?
thanks!