regexp_like(字符串, 模式)



查询 1

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

结果

 expression 
------------ 
   true

此处,数字 3 带有字符 c,因此结果为 true。

查询 2

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

结果

 expression 
------------ 
   false 

此处,字符 e 不在正则表达式中。

apache_presto_sql_functions.htm
广告