sql的regexp_replace
时间: 2023-11-10 17:04:27 浏览: 165
mysql_regexp_replace.zip_oracle
SQL中的regexp_replace函数是用于替换字符串中符合正则表达式的部分。它的语法如下:
```regexp_replace(string, pattern, replacement)```
其中,string是要进行替换的字符串,pattern是正则表达式,replacement是替换后的字符串。
例如,我们可以使用regexp_replace函数将字符串中的所有数字替换成空格:
```SELECT regexp_replace('abc123def456', '\d+', ' ')```
输出结果为:'abc def '
阅读全文