您好,登錄后才能下訂單哦!
這篇文章主要介紹php清除html,空格,換行,提取純文字的方法是什么,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
php清除html,空格,換行,提取純文字的方法:1、去除字符串內(nèi)部的空行,代碼為【$str = preg_replace('',$str)】;2、清除字符串兩邊的空格,代碼為【$str = trim($str)】。
php清除html,空格,換行,提取純文字的方法:
方法一:
function DeleteHtml($str) { $str = trim($str); //清除字符串兩邊的空格 $str = preg_replace("/\t/","",$str); //使用正則表達(dá)式替換內(nèi)容,如:空格,換行,并將替換為空。 $str = preg_replace("/\r\n/","",$str); $str = preg_replace("/\r/","",$str); $str = preg_replace("/\n/","",$str); $str = preg_replace("/ /","",$str); $str = preg_replace("/ /","",$str); //匹配html中的空格 return trim($str); //返回字符串 }
調(diào)用方法
DeleteHtml($str);
$str
為需要清除的頁(yè)面字符串
方法二:
去除字符串內(nèi)部的空行:
$str = preg_replace("/(s*?r?ns*?)+/","n",$str);
去除全部的空行,包括內(nèi)部和頭尾:
$str = preg_replace('/($s*$)|(^s*^)/m', '',$str);
以上是php清除html,空格,換行,提取純文字的方法是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。