PostgreSQL 相似字符串函数和操作符对比

postgresql字符串函数的相似功能函数对比:

1. 替换字符串中的某一个子串

postgres=# select replace('you are a man,old man','man','woman');
you are a woman,old woman
postgres=# select translate('you are a man,'woman');
you ore o wom,old wom
可以看出,translate把替换后的子串截断成原来的子串的长度。

2. trim相关的函数,消除两边的指定子串

> 替换两头的子串:

postgres=# select trim('xxxytrimyyyx','xy');
 trim
postgres=# select trim(both 'xy' from 'xxxytrimyyyx');
 trim
postgres=# select btrim('xxxytrimyyyx','xy');
 trim

> 替换左边的子串

postgres=# select ltrim('xxxytrimyyyx','xy');
 trimyyyx

postgres=# select trim(leading 'xy' from 'xxxytrimyyyx');
 trimyyyx

> 替换右边的子串

postgres=# select rtrim('xxxytrimyyyx','xy');
 xxxytrim

postgres=# select trim(trailing 'xy' from 'xxxytrimyyyx');
 xxxytrim

3.抽取字符串

postgres=# select substring('helloworld',2,4);
 ello

postgres=# select substr('helloworld',4);
 ello

参考地址: http://www.cnblogs.com/stephen-liu74/archive/2012/05/02/2294071.html

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...