regexp_replace(string, pattern, replacement)



查询

presto:default> SELECT regexp_replace('1a 2b 3c 6f', '(\d+)([abc]) ', 'aa$2 ') 
as expression;

结果

 expression 
---------------- 
 aaa aab aac 6f 
 (1 row)

使用模式并替换字符串 'aa' 替换匹配该表达式的字符串实例。

apache_presto_sql_functions.htm
广告