postgresql中的Regexp

时间:2013-04-21 12:35:02

标签: regex postgresql

这里有E的含义:

regexp_replace('foobarbaz', 'b(..)',  E'X\\1Y', 'g')

1 个答案:

答案 0 :(得分:1)

使用regexp match operator

select *
from mytable
where col ~ '^.{3}(\d)'

E表示String Constant with C-style Escape