regexp_replace(字符串、模式)



查询

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

结果

 expression 
------------ 
    6f 

将与表达式匹配的字符串实例替换为模式 (d + [abc]).

apache_presto_sql_functions.htm
广告