I'm trying to delete a text between two text lines in a variable "RangeToHtml". I want to delete everything between
and
, which present only once in the whole code.
I've tried to use the code below, which gave me no result.
PHP:
<![if supportMisalignedColumns]>
PHP:
<![endif]>
PHP:
<![if supportMisalignedColumns]>
<tr height=0 style='display:none'>
<td width=76 style='width:57pt'></td>
<td width=216 style='width:162pt'></td>
<td width=113 style='width:85pt'></td>
<td width=120 style='width:90pt'></td>
<td width=56 style='width:42pt'></td>
</tr>
<![endif]>
I've tried to use the code below, which gave me no result.
PHP:
RangetoHTML = Replace(RangetoHTML, "<![if supportMisalignedColumns]>*<![endif]>", "")
Last edited: