Goal:
Remove the following HTML code from hundreds of pages...
<tr>
<td colspan="6"><hr /> »<font color="#3300FF">random text will be here<br />
<br />
more random text may or may not be here</font></td>
</tr>
Method:
I'm using a program called grepWin that allows me to find and replace text, and it works very well, but I'm not as regex litterate as I'd like to be. Everything I've tried so far either doesn't match or ends up matching way too much.
Basically, I want to tell that anytime it finds the following code...
<tr>
<td colspan="6"><hr /> »<font color="#3300FF">
...to match it and everything after it until it runs into a
</tr>
Any help is greatly appreciated!