首頁 >後端開發 >php教程 >如何從 PHP 字串中刪除空格(或所有空白)?

如何從 PHP 字串中刪除空格(或所有空白)?

Linda Hamilton
Linda Hamilton原創
2024-12-12 13:56:141061瀏覽

How to Remove Spaces (or All Whitespace) from a String in PHP?

如何在PHP 中刪除字串中的所有空格

在PHP 中,您可以使用str_replace( ) 函數或preg_replace()函數。

使用str_replace()

如果只想刪除空格,可以使用 str_replace() 函數。以下程式碼片段示範如何使用它:

$string = "this is my string";
$string = str_replace(' ', '', $string);
echo $string; // Output: thisismystring

使用preg_replace()

如果要刪除所有空白字符,包括空格、製表符和行結尾,您可以使用preg_replace() 函數。以下程式碼片段示範如何使用它:

$string = "this is my string";
$string = preg_replace('/\s+/', '', $string);
echo $string; // Output: thisismystring

/s 正規表示式模式符合一個或多個空白字元。 '' 替換字串指定應刪除符合的空白字元。

以上是如何從 PHP 字串中刪除空格(或所有空白)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn