メインコンテンツまでスキップ

regexp_replace

regexp_replace

説明

この関数は、正規表現パターンに一致するstr内の文字列のシーケンスをreplで置換します。

構文

VARCHAR regexp_replace(VARCHAR str, VARCHAR pattern, VARCHAR repl)

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 |
+----------------------------------------+

キーワード

REGEXP_REPLACE, REGEXP, REPLACE