刪除字串首尾的空白(可以首尾一起,也可以指定首或尾,取決於控制引數),但會保留字串內部作為詞與詞之間分隔的空格。
各種 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 ;
MySQL中trim 函式的用法
trim函式可以過濾指定的字串 完整格式 trim remstr from str 簡化格式 trim remstr from str 返回字串 str 其中所有remstr字首和 或字尾都已被刪除。若分類符both leadin或trailing中沒有乙個是給定的,則假設為both。remstr為...
php中trim函式例項用法
我們在編寫 的時候,會遇到需要去除字串的空格情況,這個時候,就需要用到函式才www.cppcns.com可以實現,在php中有乙個函式系列是專門提供使用的,這就是trim函式,其中系統中ltrim函式可以實現去掉字串首部字元,rtrim函式只去除字串尾部的字元。下面就來程式設計客棧詳細了解操作方法吧...
mybatis中trim的用法
使用過trim標籤都知道trim標籤有四個屬性 1.prefix,prefixoverrides,suffix,suffixoverrides本人一直對這四個標籤的名字無法理解,並對其功能感到混亂。下面是自己思考後的一些總結 trim標籤使用 1 trim 有四個屬性 2 prefix,suffix...