php去掉字串中所有空格的方法:1、使用str_replace()函數,語法「str_replace(" ","",$str)」;2、用preg_replace()函數,語法「preg_replace ('/\s /','',$str)」。
本教學操作環境:windows7系統、PHP8版、DELL G3電腦
php去掉字串中所有空格的方法
使用 str_replace() 函數去除所有空格
1、使用 str_replace() 函數
我們使用內建函數 str_replace() 來取代字串或陣列中的子字串。替換後的字串作為一個參數傳遞。使用該函數的正確語法如下。str_replace($searchString, $replaceString, $originalString, $count);
##$searchString
| 強制它是我們要尋找和取代的子字串或陣列 | |
$replaceString
| 強制它是我們要放在 | $searchString 的位置的字串。函數會檢查 $searchString 的出現情況,並用 $replaceString 取代。函數將檢查 $searchString 的出現情況,然後用 $replaceString 取代它。它也可以是一個 array。 |
$originalString
| 強制它是原始的字串,我們想從中找到一個子字串或一個字元來替換。 | |
$count
| 可選#它告訴人們對 | $originalString 進行替換的總次數 |
<?php header("Content-type:text/html;charset=utf-8"); $searchString = " "; $replaceString = ""; $originalString = "This is a programming tutorial"; $outputString = str_replace($searchString, $replaceString, $originalString); echo "原字符串:".$originalString."<br>"; echo "去除空格后的字符串:".$outputString; ?>
<?php header("Content-type:text/html;charset=utf-8"); $searchString = " "; $replaceString = ""; $originalString = "This is a programming tutorial"; $outputString = str_replace($searchString, $replaceString, $originalString, $count); echo "原字符串:".$originalString."<br>"; echo "去除空格后的字符串:".$outputString."<br>"; echo "替换字数:".$count; ?>
2、使用 preg_replace() 函數
也可以使用 preg_replace() 函數來刪除字串中的所有空格。這個函數不僅可以刪除空格字符,還可以刪除字串中的製表符。使用這個函數的正確語法如下。preg_replace($regexPattern, $replacementVar, $original, $limit, $count)
| ||
| $regexPattern | |
它是我們將在原始字串或陣列中搜尋的模式 | $replacementVar | |
它是我們用來取代搜尋值的字串或陣列 | $original | |
它是一個字串或陣列,我們要從其中找到值並替換它。 | $limit |
#這個參數限制了替換的數量
#$count
可選這個參數告訴了我們對原始字串或陣列進行替換的總次數
#我們將使用模式 /\s /
來找出空格。從字串中刪除空格的程式如下。 ###<?php header("Content-type:text/html;charset=utf-8"); $originalString = "This is a programming tutorial"; $outputString = preg_replace('/\s+/', '', $originalString); echo "原字符串:".$originalString."<br>"; echo "去除空格后的字符串:".$outputString."<br>"; ?>
<?php header("Content-type:text/html;charset=utf-8"); $searchString = " "; $replaceString = ""; $limit = 2; $originalString = "This is a programming tutorial"; $outputString = preg_replace('/\s+/', '', $originalString,$limit); echo "原字符串:".$originalString."<br>"; echo "去除空格后的字符串:".$outputString."<br>"; ?>
以上是php怎麼去掉字串中的所有空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!