网站中的图片路径变了 原来图片网址是 http://pic.yupoo.com/zgzsscmh/COM4V4Ya/IFJ3R.jpg
现在想把 里面的/ 替换掉 变成 http://pic.yupoo.com/zgzsscmh-COM4V4Ya-IFJ3R.jpg 只替换两个 ,其它不替换
大神们 需要正则写吗,怎么写
认证高级PHP讲师
使用replace函數
replace
update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');
update test_table set url = replace(url, 'http://pic.yupoo.com/zgzsscmh/', 'http://pic.yupoo.com/')
雷雷
或
https://github.com/hholzgra/mysql-udf-regexp
使用
replace
函數雷雷
或
https://github.com/hholzgra/mysql-udf-regexp