Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここでの意味E:
E
regexp_replace('foobarbaz', 'b(..)', E'X\\1Y', 'g')
?
正規表現一致演算子を使用します:
select * from mytable where col ~ '^.{3}(\d)'
は、 C スタイルのエスケープを使用した文字列定数をE示します