dagnasty Posted July 4, 2006 Share Posted July 4, 2006 I'm having a lot of trouble with this. My brain just fails when I start looking at expressions that do similar to these, regardless of the complexity. I'd very much appreciate some enlightenment.I want to remove this sement of html (in this case a <TD>) that occurs multipletimes in a string...<td class="vertTh"><a href="brwsearch.php?b=1&c=201" title="More from this category">Video > Movies</a></td>... the contents of the TD contain something new every in every instance but it contains the same opener and closer. (<td class="vertTh"> and </td>)I suppose I'll be looking for both<td class="vertTh"> and </td>but I don't understand how to tell it to remove it completely.Sorry about my poor explanation. It's 4 am and I'm going nuts. Thanks to anyone willing to enlighten me! :) Link to comment https://forums.phpfreaks.com/topic/13622-searching-for-2-strings-and-removing-them-and-data-between-them/ Share on other sites More sharing options...
Wildbug Posted July 4, 2006 Share Posted July 4, 2006 [code]preg_replace('/<td class="vertTh">(.*?)<\/td>/si',"$1",$yourTextVariable);[/code]That should work. Link to comment https://forums.phpfreaks.com/topic/13622-searching-for-2-strings-and-removing-them-and-data-between-them/#findComment-52895 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.