Jump to content

[SOLVED] Remove text between two HTML comments.


JasonLewis

Recommended Posts

I'm not sure why this isn't working, but it isn't. I just can't seem to get it.

 

This is my expression:

$tmp_tpl = preg_replace("#<!--COMMENTBOX-->(.*?)<!--ENDCOMMENTBOX-->#", "", $tmp_tpl);

 

I just want to replace ANYTHING between the two tags with nothing.

 

Cheers everyone.

Well, one way is to make use of assertions. By using look behind and look ahead assertions (they are not included in any matches), you can grab what is not part of them:

 

$tmp_tpl = preg_replace('#(?<=<!--COMMENTBOX-->).+(?=<!--ENDCOMMENTBOX-->)#', '', $tmp_tpl);

 

Of course, to test this out, when you say echo $tmp_tpl, you won't see anything, as these are comment tags (and thus do not display). So you would have to right-click and view source to see the '<!--COMMENTBOX--><!--ENDCOMMENTBOX-->' effect.

 

Cheers,

 

NRG

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.