regexp_extract(字符串, 模块)



查询

presto:default> SELECT regexp_extract('1a 2b 3c 6f', '[a-z]+') as regexp_pattern;

结果

 regexp_pattern 
---------------- 
       a

查询返回表达式匹配到的第一个字符串。

apache_presto_sql_functions.htm
广告