I want to find all br tags inside of table tag using regular expressions. This is what I have so far:
<table[^>]*>(((<br/>)(?!</table>)).)*</table>
But this code doesn't work in notepad++.
This is what am testing the regular expression with:
<table>
</table>
<table>
<br/>
</table>
Basically the last 3 lines should be found with the regular expressions but the one regular expression I listed above doesn't find anything.