Hi
I'm trying to use RegEx to remove a tag by it's ID attribute. The actual HTML has already been cleaned up as I am formatting for export to Excel (so no need to point out that it's incorrect HTML!) - therefore, the example of what I am wanting to remove is as follows:
STUFF I WANT TO KEEP GOES HERE
<TABLE id=multiupdate width=*>
<TABLE>
<TR>
<TD style='border-style:solid;border-width:1px;'class=Title width=60>Invoice No. </TD>
<TD></TD></TR></TABLE></TABLE>
STUFF I WANT TO KEEP CONTINUES HERE
I can make a RegEx patern that will match all table tags but I only want to match the ones with the id=multiupdate string in them.
Any guidance would be much appreciated!