I have a html string to be parsed. ResultsString
<table id="Table1">
<tr>
<td width="50%">
Result: <span style="font-weight:bold; color:GREEN;"></span>
</td>
<td width="50%">
ID: <span style="font-weight:bold;">790043</span>
</td>
</table>
<table id="Table2">
<tr>
<td class="name">
Status:
</td>
<td class="value">
None
</td>
</tr>
</table>
<br /><br />
<a href="#" onclick="$('#vvvv').toggle();return false;" /></a>
<br />
<div id="pp1" style="displa
</div>
How would I extract/substring only the text in the two table tags. So my resuting html string would be
<table id="Table1">
<tr>
<td width="50%">
Result: <span style="font-weight:bold; color:GREEN;"></span>
</td>
<td width="50%">
ID: <span style="font-weight:bold;">790043</span>
</td>
</table>
<table id="Table2">
<tr>
<td class="name">
Status:
</td>
<td class="value">
None
</td>
</tr>
</table>
Please suggest
Thank u