這篇文章主要介紹了mysql基於正則實現模糊替換字符串的方法,結合具體實例對比分析了使用正則實現mysql字符串替換的注意事項與相關操作技巧,需要的朋友可以參考下
本文實例講述了mysql基於正則實現模糊替換字符串的方法。分享給大家供大家參考,具體如下:
例如: abcd(efg)hijk 替換之後是abcdhijk
update tabaleA set name = replace(name, substring(name, locate('<contact>', name),locate('</contact>', name) -locate('<contact>'+10, name)),'');
Truncated incorrect DOUBLE value
concat(Str,'')函數錯誤問題,有的DB支援+操作符,而有的就不可以必須使用
concat 函數。
複製程式碼 程式碼如下:
update t_global_project set name = replace(name, substring(name, locate('<contact>', name),locate('</contact>', name) -locate(concat('<contact>','10'), name)),'');
以上是詳解mysql基於正規實作模糊替換字串的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!