- 相關(guān)推薦
關(guān)于php去除字符串中空字符的常用方法
本文實例總結(jié)了php去除字符串中空字符的常用方法。分享給大家供大家參考。具體分析如下:
php中包含四個可以去除字符串空格的函數(shù):
trim() – 去除字符串兩端的空字符
ltrim() – 去除字符串前端的空字符
rtrim() – 去除字符串末尾的空字符
chop() –同rtrim().
代碼如下:
<"t t !t t ";$leftTrimmed = ltrim($text);$rightTrimmed = rtrim($text);$bothTrimmed = trim($text);print("leftTrimmed = ($leftTrimmed)n");print("rightTrimmed = ($rightTrimmed)n");print("bothTrimmed = ($bothTrimmed)n");?>
輸出結(jié)果:
leftTrimmed = (! )rightTrimmed = ( !)bothTrimmed = (!)
希望本文所述對大家的php程序設(shè)計有所幫助。
【php去除字符串中空字符的常用方法】相關(guān)文章:
php字符串處理函數(shù)大全03-20
《PHP字符串操作》收集整理04-02
JAVA十六進(jìn)制與字符串的轉(zhuǎn)換方法03-05
關(guān)于php中的一個中文字符串截取函數(shù)03-31
JavaScript中常見的字符串操作函數(shù)及用法07-24
sun認(rèn)證java關(guān)于字符串處理技巧03-29
asp.net richTextBox中高亮顯示選中字符串03-29
Dreamweaver插入特殊字符的方法03-04