Chinaunix首页 | 论坛 | 博客
  • 博客访问: 304529
  • 博文数量: 85
  • 博客积分: 1508
  • 博客等级: 上尉
  • 技术积分: 791
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-06 11:49
文章分类

全部博文(85)

文章存档

2013年(22)

2012年(63)

我的朋友

分类: Oracle

2013-04-11 17:51:34

In Oracle/PLSQL, the trim function removes all specified characters either from the beginning or the ending of a string.

The syntax for the trim function is:

trim([leading|trailing|both[trim_character]] string1)


leading - remove trim_string from the front of string1.

trailing - remove trim_string from the end of string1.

both - remove trim_string from the front and end of string1.

If none of these are chosen (ie: leading, trailing, both), the trim function will remove trim_string from both the front and end of string1.

trim_character is the character that will be removed from string1. If this parameter is omitted, the trim function will remove all leading and trailing spaces from string1.

string1 is the string to trim.

For example:

trim('   tech   ')  would return 'tech'
trim(' '  from  '   tech   ')  would return 'tech'
trim(leading '0' from '000123')  would return '123'
trim(trailing '1' from 'Tech1')  would return 'Tech'
trim(both '1' from '123Tech111')  would return '23Tech'

阅读(2854) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~