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:
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:
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'
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'
本文介绍了 Oracle/PLSQL 中 TRIM 函数的使用方法。TRIM 函数可以从字符串的开头或结尾移除指定字符,默认情况下移除空白字符。文章通过多个实例展示了如何使用 leading、trailing 和 both 参数来定制字符串的修剪行为。
2517

被折叠的 条评论
为什么被折叠?



