Image this table:
<table cellpadding="0" border="0">
<tr class="someclass">
<td>blah blah THISISIMPORTANT blah blah</td>
</tr>
</table>
I want to select only the tables that have TDs with the innerHTML that contains 'THISISIMPORTANT'.
This must be done with regular expressions in c#
this is what i have tried:
<table\s*.*?\s*>\s*.*?\s*<td\s*.*?\s*>\s*.*?\s*</td>\s*.*?\s*</table>