overlay()

用于替换字符串一部分的函数

overlay() 是一个用于替换字符串一部分的系统函数。

overlay()PostgreSQL 7.3 中添加。

用法

overlay ( string text PLACING newsubstring text FROM start integer [ FOR count integer ] ) → text

如果省略了count,则替换的字符数为newsubstring的长度。

更改历史记录

示例

overlay()的基本用法示例

postgres=# SELECT overlay('PostgreXXX' PLACING 'SQL' FROM 8 FOR 3);
  overlay   
------------
 PostgreSQL
(1 row)

分类

字符串操作系统函数

另请参阅

replace()regexp_replace()

反馈

请提交您对"overlay()"的任何评论、建议或更正 此处