Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 926 Bytes

File metadata and controls

41 lines (28 loc) · 926 Bytes

regexp_replace

功能

对字符串 str 进行正则匹配, 将命中 pattern 的部分使用 repl 来进行替换

语法

regexp_replace(str, pattern, repl)

参数说明

str: 支持的数据类型为 VARCHAR

pattern: 支持的数据类型为 VARCHAR

repl: 支持的数据类型为 VARCHAR

返回值说明

返回值的数据类型为 VARCHAR

示例

MySQL > SELECT regexp_replace('a b c', " ", "-");
+-----------------------------------+
| regexp_replace('a b c', ' ', '-') |
+-----------------------------------+
| a-b-c                             |
+-----------------------------------+

MySQL > SELECT regexp_replace('a b c','(b)','<\\1>');
+----------------------------------------+
| regexp_replace('a b c', '(b)', '<\1>') |
+----------------------------------------+
| a <b> c                                |
+----------------------------------------+