标签: regex postgresql
这里有E的含义:
E
regexp_replace('foobarbaz', 'b(..)', E'X\\1Y', 'g')
答案 0 :(得分:1)
使用regexp match operator:
select * from mytable where col ~ '^.{3}(\d)'
E表示String Constant with C-style Escape