I want a regular expression to find all the tr tags that do not contain td
<tr asdf>
<td>
<hello>
</td>
</tr>
<tr asdf>
</tr>
I only want the bottom 2 lines in the code to be found. Here is the template of the regular expression:
<tr.*?>(Cannot figure this section out)</tr>