PHP字串函數-trim()執行個體用法

來源:互聯網
上載者:User

標籤:ring   分行符號   返回   pre   刪除字串   string   text   new   去掉   

string trim ( string $str [, string $charlist = ” \t\n\r\0\x0B” ] )
此函數返回字串 str 去除首尾空白字元後的結果。如果不指定第二個參數, trim() 將去除這些字元:
1.” ” (ASCII 32 (0x20)),普通空格符。
2. “\t” (ASCII 9 (0x09)),定位字元。
3. “\n” (ASCII 10 (0x0A)),分行符號。
4. “\r” (ASCII 13 (0x0D)),斷行符號符。
5. “\0” (ASCII 0 (0x00)),空位元組符。
6. “\x0B” (ASCII 11 (0x0B)),垂直定位字元。

<?php    $text = "\t\tThese are a few words :) ...  ";    $binary = "\x09Example string\x0A";    $hello = "Hello World";    $str = "##\t使用函數trim去掉字串兩端特定字元####";    $new_text = trim($text);    $new_binary = trim($binary);    $new_hello = trim($hello);    $new_str = trim($str,"#");    echo $new_text;        //These are a few words :) ...        echo $new_binary;    //Example string    echo $hello;        //Hello World     echo $new_str;        //使用函數trim去掉字串兩端特定字元?>

以上函數功能,同時適用於ltrim()、rtrim(),這2個函數
1、ltrim();刪除字串開頭的空白字元(或其他字元)
2、rtrim();刪除字串末端的空白字元(或者其他字元)

PHP字串函數-trim()執行個體用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.