regexp_extract(string, pattern, group)
查询
presto:default> SELECT regexp_extract('1a 2b 3c 6f', '(\d+)', 1) as regexp;
regexp -------- 1
查询返回与一组表达式匹配的第一个数字
apache_presto_sql_functions.html
presto:default> SELECT regexp_extract('1a 2b 3c 6f', '(\d+)', 1) as regexp;
regexp -------- 1
查询返回与一组表达式匹配的第一个数字
apache_presto_sql_functions.html
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。