首页 > 其他 > 详细

postgres 正则表达式

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

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 正则表达式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!