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

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

Linda Hamilton
發布: 2024-12-12 13:56:14
原創
989 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板