I'm needing to cleanup our database and need to mass replace something like this:
<div class="rtecenter"><br />
<font color="#990033"><strong>I'm so hot, I sometimes spontaneously combust.</strong></font><br />
<img src="http://i476.photobucket.com/albums/rr124/redacted/coollogo_com_63811610.gif" alt="" /></div>
(I'm simply going to remove all instances of it).
I already know how to do a mass replace (I'm using PHPMyAdmin), however The problem is that it has CR/LF's in it so I'm not sure how to add the correct string to find in the query ... just for testing, I've tried doing searches using Char(10)
or Char(13)
where the new lines are but no results are ever returned, (I know they are there though).
Anyone know?