mysql查询替换文本内的链接:可以这样做吗?

时间:2017-04-13 14:49:10

标签: mysql sql

是否可以编写MySQL查询来替换HTML超文本链接中的链接,如下所示:

前:

hello world <a href="http://www.sample.com/">hello world2</a>
hello world2 <a href="http://www.sample.com/news.php">hello world2</a>

并将其转换为:

hello world <a href="http://www.sample.com/?kid=1000">hello world2</a>
hello world <a href="http://www.sample.com/news.php?kid=1000">hello world2</a>

(基本上为以http://www.sample.com开头的所有链接添加额外参数)

0 个答案:

没有答案