Home  >  Article  >  Backend Development  >  How to remove middle spaces in php

How to remove middle spaces in php

藏色散人
藏色散人Original
2021-05-18 09:20:332827browse

php method to remove spaces in the middle: 1. Use regular expressions to remove spaces in the middle of a string; 2. Use str_replace() function to remove; 3. Use strtr() function to remove; 4. Use encapsulation function to remove spaces in the middle. .

How to remove middle spaces in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

php deletes the spaces in the middle of the string

First method: Use regular expressions

The code is as follows:

<?php
echo preg_replace(&#39;# #&#39;, &#39;&#39;, &#39;ab     ab&#39;);
//输出 "abab"
?>

Second method: Use str_replace() function

The code is as follows:

<?php
echo str_replace(&#39; &#39;, &#39;&#39;, &#39;ab    ab&#39;);
//输出 "abab&#39;
?>

Third method: use strtr() function

The code is as follows:

<?php
echo strtr(&#39;ab    ab&#39;, array(&#39; &#39;=>&#39;&#39;));
// 输出 "abab"
?>
## The use of the #strtr() function is a bit special. In essence:


The code is as follows:

<?php
strtr(&#39;ewb&#39;, &#39;web&#39;, &#39;123&#39;) ==
strtr(&#39;ewb&#39;, array(&#39;e &#39;=> &#39;2&#39;, &#39;w&#39; => &#39;1&#39;, &#39;b&#39; => &#39;3&#39;)) ==
str_replace(array(&#39;e&#39;, &#39;w&#39;, &#39;b&#39;), array(&#39;2&#39;, &#39;1&#39;, &#39;3&#39;), &#39;ewb&#39;);
?>

Fourth method: use the encapsulated function

The code is as follows:

function trimall($str)//删除空格
{
    $qian=array(" "," ","\t","\n","\r");
    $hou=array("","","","","");
    return str_replace($qian,$hou,$str); 
}

Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of How to remove middle spaces in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to close php curlNext article:How to close php curl