search
HomeBackend DevelopmentPHP ProblemHow to replace spaces in string in php

How to replace spaces in string in php

Jul 31, 2020 pm 03:26 PM
phpstringspace

How to replace spaces in a string in php: You can use the str_replace() function to replace, the specific usage is: [str_replace(' ',' ',$str)]. This function replaces some characters in a string (case-sensitive) and returns a string or array with the replacement values.

How to replace spaces in string in php

Function introduction:

(Recommended tutorial: php graphic tutorial)

str_replace( ) function replaces some characters in a string (case-sensitive) and returns a string or array with the replacement values.

Function syntax:

str_replace(find,replace,string,count)

Parameter description:

  • find Required. Specifies the value to look for.

  • replace Required. Specifies the value to replace the value in find .

  • string Required. Specifies the string to be searched for.

  • count Optional. A variable counting the number of substitutions.

(Learning video recommendation: php video tutorial)

Code implementation:

Replace the spaces in the string with comma.

<?php
    /* *
        关键词中的空格替换为逗号
    */
    function emptyreplace($str){
        $str = str_replace(&#39; &#39;,&#39; &#39;,$str);  //..替换全角空格为半角空格
        $str = str_replace(&#39; &#39;,&#39; &#39;,$str);   //..替换连续的空格为一个
        $noe = false;                 //   是否遇到不是空格的字符
        for($i = 0;$i < strlen($str);$i++){    //  遍历整个字符串
            if($noe && $str[$i] == &#39; &#39;){
                $str[$i] = &#39;,&#39;;           //..如果当前这个空格之前出现了不是空格的字符
            }else if($str[$i] != &#39; &#39;){
                $noe = true;            //  当前这个字符不是空格,定义下$noe变量
            }
        }       
        return $str; 
    }
    echo emptyreplace(&#39;1 前面是一个全角空格     前面是一系列半角空格&#39;);
?>

The above is the detailed content of How to replace spaces in string 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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor