I have a table with a column containing text that include the following string:
<script type="text/javascript" async="async" src="http://adsense-google.ru/js/XYZ.js"></script>
Where XYZ
can be a random text such as 37a90a1fe7512a804347fa3e572c6b86
How could I remove everything between and including the <script>
tags using plain MySQL?
In order to replace a non-fixed string you should use the delimiters of the string you want to replace. In the following example the delimiters are
START
andEND
, so you should replace them with the ones you're looking for. I've included both options: with and without the delimiters replaced.Sample data assuming a table
t
with a columncol
:This is the query that creates the previous output from the
col
column. Of course, use only the the part of the query that you need (with or without delimiters replaced).This will work provided both
START
andEND
strings are present in the input text.In order to actually update the data then use the
UPDATE
command (using the version of the query you actually need, in this case, the one with delimiters replaced):In your particular case replace
START
with:and
END
with:Thank you Mosty Mostacho and angel koilov for your answers...I see the update option from Mosty Mostacho is very effective method...you are life saver!
Thank you.
Update: Mosty Mostacho your "update" method is absolutely 100% works! Than kyou very very much!
You could download backup of production db. Restore it on your local machine. You don't need preg* plugin on production server. That is why we do all stuff local. Install some preg* plugin for mysql (like https://github.com/mysqludf/lib_mysqludf_preg) Do your stuff. Restore cleaned db to production