ideas on removing tags within tags over multiple lines
Posted: Mon Nov 24, 2003 9:31 am
Hi all
I've just discovered the true power of textpad, having been a big fan of macros for a long time, regex expressions has given me rocket boots to climb the mountains of the world.
Problem how do i take out the <br> tags within the table, i just keep getting "Cannot find regular expression:"
It would be easier for me to remove the <br> tags within the <td></td> tags.
I've tried
Any ideas, also any good tutorial sites on expressions would be great.
Many Thanks
Triggsley
I've just discovered the true power of textpad, having been a big fan of macros for a long time, regex expressions has given me rocket boots to climb the mountains of the world.
Problem how do i take out the <br> tags within the table, i just keep getting "Cannot find regular expression:"
Code: Select all
<table>
<tr>
<td>asdasdasdds<br>
asdasdasdd<br>
asdasdasdasdasd</td>
</tr>
<tr>
<td>asdasdasdds asdas sad
dsfsfd sdfssdf fsddsf dfsdfsd
sdfsfw ewrwerwer wewerwwer<br>
asdasdasdd<br>
asdasdasdasdasd</td>
</tr>
</table>I've tried
Code: Select all
find: <td>\(.*\)\([<br>]\)</td>
with: <td>\1</td>Many Thanks
Triggsley