<td class="redline">([\s\S]*)</td>
The simplest way is by using a non-greedy quantifier:
<td class="redline">([\s\S]*?)</td>
Ronald
I thought the non-greedy qualifier had to be associated with the
close tag and therefore after the closing parentheses. I tried
putting it all kinds of places, except inside the parentheses.