在MySQL中用正则表达式替换数据库中的内容的方法 (2011-10-11 11:50:24)转载▼
标签: 正则表达式 数据库中 替换 记录 初衷 it 分类: 程序设计
在MySQL中用正则表达式替换数据库中的内容的方法
PS:下面是转过来的,用于记录下,这个不是正则的初衷,只是用了REGEXP而已,正则的更灵活更方便
将comment表中的author_url包含
www.sohu.com的记录,其中的sohu替换为sina,一个语句搞定~
update comment set author_url=REPLACE(author_url,'sohu','sina') where author_url REGEXP '
www.sohu.com';
带IF判断的复杂替换
update comment set url=IF(url REGEXP 'test.yahoo.com.cn',REPLACE(url,'www1.sohu.com','
www.sina.com'),REPLACE(url,'www2.yahoo.com','
www.sina.com')) where 1=1;
首先描述一下,我遇到的问题:
以下是数据库中的一个表mt2:
+----+------------------------------------------+
| id | name |
+----+------------------------------------------+
| 1 | sdfsf<contact>beijing</contact>sldjfsld |
| 2 | sdfsf<contact>shanghai</contact>sldjfsld |
| 3 | sdfsf<contact>jn</contact>sldjfsld |
| 4 | sdfsf<contact>qd</contact>sldjfsld |
+----+------------------------------------------+
遇到的要求是:将该表中<contact>到</contact>的内容删除。
众所周知,replace函数是不支持正则表达式的,所以只能采用其他的方法处理。
于是,我是使用了下面的sql语句:
update mt2 set name = replace(name, substring(name, locate('<contact>', name),locate('</contact>', name)-locate('<contact>'+10, name)),'');
问题解决了。
结果:
+----+-------------------+
| id | name |
+----+-------------------+
| 1 | sdfsfactsldjfsld |
| 2 | sdfsfactsldjfsld |
| 3 | sdfsfactsldjfsld |
| 4 | sdfsfactsldjfsld |
+----+-------------------+
下面描述下,所用到的函数:
locate:
LOCATE(substr,str)
POSITION(substr IN str)
返回子串 substr 在字符串 str 中第一次出现的位置。如果子串 substr 在 str 中不存在,返回值为 0:
substring
SUBSTR(str,pos,len): 由<str>中的第<pos>位置开始,选出接下去的<len>个字元。
replace
replace(str1, str2, str3): 在字串 str1 中,當 str2 出現時,將其以 str3 替代。
查了一下网上,普遍给出如下解决方案:
update comment set author_url=REPLACE(author_url, ’sohu’, ’sina’) where author_url REGEXP “www.sohu.com”;
但是问题是被替换的字符串内容不定,以上办法就不行了。
在开发反向链接交换网的时候也碰到类似问题,最后想出了一个办法,结合使用locate函数:
$l=strlen($….)
update table set words = replace(words, substring(words, locate(’part_of_words’, words),”.$l.” ), ”)