码迷,mamicode.com
首页 > 其他好文 > 详细

postgres 正则表达式

时间:2014-07-06 13:31:33      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   os   html   io   

PostgreSQL正则表达式

基础:

 

OperatorDescriptionExample
~ Matches regular expression, case sensitive ‘thomas‘ ~ ‘.*thomas.*‘
~* Matches regular expression, case insensitive ‘thomas‘ ~* ‘.*Thomas.*‘
!~ Does not match regular expression, case sensitive ‘thomas‘ !~ ‘.*Thomas.*‘
!~* Does not match regular expression, case insensitive ‘thomas‘ !~* ‘.*vadim.*‘

 

注意:~相当于like

Some examples:

 

‘abc‘ ~ ‘abc‘    true
‘abc‘ ~ ‘^a‘     true
‘abc‘ ~ ‘(b|d)‘  true
‘abc‘ ~ ‘^(b|c)‘ false

 

postgres 正则表达式,布布扣,bubuko.com

postgres 正则表达式

标签:des   blog   http   os   html   io   

原文地址:http://www.cnblogs.com/kevinge/p/3825794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!