各種 trim 函式的語法如下:
LTRIM(字串):將字串左邊的空格移除。
RTRIM(字串): 將字串右邊的空格移除。
TRIM(字串): 將字串首尾兩端的空格移除,作用等於RTRIM和LTRIM兩個函式共同的結果。
ALLTRIM(字串):將字串左右邊兩邊的空格移除。
例1:
TRIM(" Sample ");
結果:
"Sample"
例2:
LTRIM(" Sample ");
"Sample "
例3:
? RTRIM(" Sample ");
" Sample"
ALLTRIM(" Sample ")
結果:
在oracle中,trim()函式的用法有,leading 開頭字元,trailing 結尾字元,both 開頭和結尾字元,如下:
trim(leading || trailing || both "將要被替換掉的字元" from “將要被替換的字串")
1、trim函式去除指定的開頭字元
select trim(leading "x" from "xday") as strTemp from tableName ;
2、trim函式去除指定的結尾字元
select trim(trailing "x" from "dayx") as strTemp from tableName ;
3、trim函式去除指定的首部和尾部字元
select trim(both "x" from "xdayx") as strTemp from tableName ;
4、預設情況下,trim函式會去除首部和尾部,被指定的字元
select trim("x" from "xdayx") as strTemp from tableName ;
5、如果沒有指定被移除的字元,則會預設去除首部和尾部的空格
select trim(" day ") as strTemp from tableName ;
各種 trim 函式的語法如下:
LTRIM(字串):將字串左邊的空格移除。
RTRIM(字串): 將字串右邊的空格移除。
TRIM(字串): 將字串首尾兩端的空格移除,作用等於RTRIM和LTRIM兩個函式共同的結果。
ALLTRIM(字串):將字串左右邊兩邊的空格移除。
例1:
TRIM(" Sample ");
結果:
"Sample"
例2:
LTRIM(" Sample ");
結果:
"Sample "
例3:
? RTRIM(" Sample ");
結果:
" Sample"
ALLTRIM(" Sample ")
結果:
"Sample"
在oracle中,trim()函式的用法有,leading 開頭字元,trailing 結尾字元,both 開頭和結尾字元,如下:
trim(leading || trailing || both "將要被替換掉的字元" from “將要被替換的字串")
1、trim函式去除指定的開頭字元
select trim(leading "x" from "xday") as strTemp from tableName ;
2、trim函式去除指定的結尾字元
select trim(trailing "x" from "dayx") as strTemp from tableName ;
3、trim函式去除指定的首部和尾部字元
select trim(both "x" from "xdayx") as strTemp from tableName ;
4、預設情況下,trim函式會去除首部和尾部,被指定的字元
select trim("x" from "xdayx") as strTemp from tableName ;
5、如果沒有指定被移除的字元,則會預設去除首部和尾部的空格
select trim(" day ") as strTemp from tableName ;