兩種去除方法:1、使用str_replaceh()函數在字串中搜尋「//」子字串並將其替換為空字元即可,語法「str_replace("//","" ,字串)」。 2.使用preg_replace()函數和正規表示式匹配「//」子字串並將其替換為空字元即可,語法「preg_replace("/\//","", 字串)」。
本教學操作環境:windows7系統、PHP8.1版、DELL G3電腦
方法1:使用str_replaceh()函數會移除字串中的「//」字元
利用str_replaceh()搜尋「//」子字串並將其替換為空字元即可。
<?php header('content-type:text/html;charset=utf-8'); $str= '123//34kh9//8jjhg//'; echo "原字符串:".$str."<br>"; $newStr=str_replace("//","",$str); echo "新字符串:".$newStr; ?>
方法2:使用preg_replace()函數和正規表示式去除字串中的「//」字元
利用正規表示式來搜尋字串中的全部“//
”,並將其替換為空字元''
即可。
#使用的正規表示式:
/\//
<?php header('content-type:text/html;charset=utf-8'); $str= '//123//34kh9//8jjhg//'; echo "原字符串:".$str."<br>"; $regex = "/\//"; $newStr=preg_replace($regex,"", $str); echo "新字符串:".$newStr; ?>
推薦學習: 《PHP影片教學》
以上是php怎麼去除字串中的'//”字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!