regexp_extract(string, pattern, group)



查询

presto:default> SELECT regexp_extract('1a 2b 3c 6f', '(\d+)', 1) as regexp; 

结果

 regexp 
-------- 
   1

该查询返回由表达式匹配的第一个数字,该表达式含有一组。

apache_presto_sql_functions.htm
广告