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! :) Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.