Reputation: 13
Is there any way of doing this, I know there are regex codes but I seem to can not find the right one...
It stars from
<tr>
<td>28 lines in between</td>
</tr>
Upvotes: 1
Views: 573
Reputation: 10149
Do a regular expression find/replace like this:
(<td>.*)\R(.*)
\1 \2
<td>
Upvotes: 1