ORACLE TRIM

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.

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'

注:截取集只能有一个字符.

========================================================================================
另外找到关于ltrim(str [,set])和rtrim(str [,set])的示例:
例一:select ltrim('109224323','109') from dual;     //224323

例二:SQL> select ltrim('10900094323','109') from dual;    //4323

例三:SQL> select ltrim('10900111000991110224323','109') from dual;  //224323

例四:SQL> select ltrim('109200111000991110224323','109') from dual;  //200111000991110224323

例五:SQL> select ltrim('902100111000991110224323','109') from dual;  //2100111000991110224323

总结:ltrim(x,y) 函数是按照y中的字符一个一个截掉x中的字符,并且是从左边开始执行的,只要遇到y中有的字符, x中的字符都会被截掉, 直到在x的字符中遇到y中没有的字符为止函数命令才结束 .

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值