MySQL查找并替换但保留部分替换

时间:2018-05-15 10:51:32

标签: mysql

好的,所以我知道如何在Mysql中进行查找和替换,但我正在尝试进行查找和替换,但保留替换的一部分,或者更确切地包装搜索到的字符串。

我需要在javascript函数中包装所有youtube嵌入代码:

<iframe width="560" height="315" src="https://www.youtube.com/embed/ibppIFuWNlg" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

我需要替换为:

<script>
InsertHtml('<iframe width="560" height="315" src="https://www.youtube.com/embed/ibppIFuWNlg" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>', 'videoEmbed', null, null, 4);
</script>

现在在mysql中使用replace不会起作用,因为会有多个iframe(youtube embeds),它们都有不同的视频代码。

0 个答案:

没有答案