Tuesday, February 7, 2012 8:38

Oracle Function Trim

Tagged with:
Posted by on Tuesday, December 16, 2008, 23:18
This news item was posted in Oracle category and has 0 Comments so far.

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.

Applies To:

  • Oracle 8i, Oracle 9i, Oracle 10g, Oracle 11g

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’

But trim() in Oracle doesn’t work for line feed.

Try this:
select length(trim(chr(13)||chr(10)||’ dfad’||chr(13)||chr(10))) from dual;

Leave a Reply

You can leave a response, or trackback from your own site.