您好,登錄后才能下訂單哦!
這篇文章主要介紹了php如何用正則匹配某個字符并刪除的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇php如何用正則匹配某個字符并刪除文章都會有所收獲,下面我們一起來看看吧。
兩種方法:1、用preg_replace()將匹配字符替換為空字符,語法“preg_replace('/指定字符/i','',$str)”。2、用preg_filter(),語法“preg_filter('/字符/i','',$str)”。
本教程操作環境:windows7系統、PHP7.1版、DELL G3電腦
php利用正則匹配某個字符并刪除的兩種方法
方法1:使用preg_replace()進行正則替換
preg_replace() 函數可以執行正則表達式的搜索和替換
只需要利用preg_replace()執行正則表達式搜索指定字符并將其替換為空字符即可。
<?php header('content-type:text/html;charset=utf-8'); $str = '1132hell0 2313'; $pattern = '/l/i'; $replacement = ''; echo preg_replace($pattern, $replacement, $str); ?>
方法2:使用preg_filter()進行正則替換
preg_filter()和preg_replace() 函數一樣,可以執行正則表達式的搜索和替換。
只需執行正則表達式搜索指定字符并將其替換為空字符即可。
<?php header('content-type:text/html;charset=utf-8'); $str = '1132hell0 2313'; echo "原字符串:".$str."<br>"; $pattern = '/3/i'; $replacement = ''; echo "處理后:".preg_filter($pattern, $replacement, $str); ?>
說明: preg_replace() 和 preg_filter() 的區別
preg_filter() 函數只返回匹配成功的結果,而 preg_replace() 返回所有結果,不管是否匹配成功。
關于“php如何用正則匹配某個字符并刪除”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“php如何用正則匹配某個字符并刪除”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。