- Apache Presto 教学
- Apache Presto - 主页
- Apache Presto - 概述
- Apache Presto - 架构
- Apache Presto - 安装
- Apache Presto - 配置
- Apache Presto - 管理
- Apache Presto - SQL 运算
- Apache Presto - SQL 函数
- Apache Presto - MySQL 连接器
- Apache Presto - JMX 连接器
- Apache Presto - HIVE 连接器
- Apache Presto - KAFKA 连接器
- Apache Presto - JDBC 接口
- 自定义函数应用程序
- Apache Presto 有用资源
- Apache Presto - 快速指南
- Apache Presto - 有用资源
- Apache Presto - 讨论
regexp_extract_all(字符串, 模板)
查询
presto:default> SELECT regexp_extract_all('1a 2b 3c 6f', '\d+') as regularexp;
结果
regularexp -------------- [1, 2, 3, 6]
在此,查询仅在数字中返回与该模式指定的正则表达式匹配的字符串。
apache_presto_sql_functions.htm
广告