📌  相关文章
📜  如何从PHP的字符串中删除所有空格?

📅  最后修改于: 2022-05-13 02:24:09.644000             🧑  作者: Mango

如何从PHP的字符串中删除所有空格?

给定一个包含一些空格的字符串元素,任务是从PHP的给定字符串str中删除所有空格。为了完成这个任务,我们在PHP有以下方法:

方法 1:使用str_replace () 方法 str_replace()方法 用于通过替换给定字符串str中的字符串("")来替换所有出现的搜索字符串(" ")

语法

str_replace($searchVal, $replaceVal, $subjectVal, $count)

例子 :

PHP


PHP


PHP


输出

GeeksforGeeks

方法 2:使用str_ireplace() 方法 str_ireplace()方法用于通过替换给定字符串str中的字符串("")来替换所有出现的搜索字符串(" ")str_replace函数str_ireplace之间的区别在于str_ireplace不区分大小写的。

语法

str_ireplace($searchVal, $replaceVal, $subjectVal, $count)

例子 :

PHP


输出
GeeksforGeeks

方法 3:使用preg_replace() 方法 preg_replace()方法 用于执行搜索和替换内容的正则表达式。

语法

preg_replace( $pattern, $replacement, $subject, $limit, $count )

例子 :

PHP


输出
GeeksforGeeks