MySQL模式匹配和替换

时间:2015-02-06 05:51:27

标签: mysql pattern-matching

我有一个包含设置列的表,在三个不同的行中包含以下数据:

{{product.description}}

{{user.email}}

{{last_date}}

我想追加字符串'|格式'与动态数据,输出应该像这样

{{product.description | format}}

{{user.email | format}}

{{last_date | format}}

我尝试使用MySQL REPLACE()方法,但问题是如何匹配这个指定的模式。

对此有什么UPDATE查询?

1 个答案:

答案 0 :(得分:0)

you can use the REGEXP operator as follows:
SELECT (statement) REGEXP '{product.description}[.space.]|[.space.]format';

希望它有所帮助。