Home  >  Article  >  Backend Development  >  How to remove blank strings in php

How to remove blank strings in php

藏色散人
藏色散人Original
2021-07-27 09:55:432249browse

How to remove blank strings in php: 1. Delete all blank characters in the string through "preg_replace("/\s /", "", $var); 2. Through "preg_replace( "/\s| /", "",$var);" Remove all whitespace characters including double-width spaces.

How to remove blank strings in php

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

How to remove blank strings in php?

PHP removes whitespace characters

Example 1:

<?php
    $var = "        This           is   a      beautiful        day!";
    // 删除字符串中的所有空白字符(不包括全角空格)
    $var1 = preg_replace("/\s+/", "", $var);
    echo $var1.&#39;<br>&#39;;
?>

Example 2:

<?php
    // 删除字符串中所有的字符(包括全角空格)
    $var = "         This           is   a      beautiful        day!";
    $var1 =preg_replace("/\s| /", "", $var);  // 已经包含了全角空格
    echo $var1.&#39;<br>&#39;;
?>

Recommended study:《PHP video tutorial

The above is the detailed content of How to remove blank strings 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