Friday, January 30, 2026
HomeLanguagesHow to remove all white spaces from a string in PHP ?

How to remove all white spaces from a string in PHP ?

Given a string element containing some spaces and the task is to remove all the spaces from the given string str in PHP. In order to do this task, we have the following methods in PHP:

Method 1: Using str_replace() Method: The str_replace() method is used to replace all the occurrences of the search string (” “) by replacing string (“”) in the given string str.

Syntax:

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

Example :

PHP




<?php
// PHP program to remove all white
// spaces from a string 
  
// Declare a string
$str = "  Geeks for   Geeks  "
    
// Using str_replace() function 
// to removes all whitespaces  
$str = str_replace(' ', '', $str);
  
// Printing the result
echo $str
?>


Output

neveropen

Method 2: Using str_ireplace() Method: The str_ireplace() method is used to replace all the occurrences of the search string (” “) by replacing string (“”) in the given string str. The difference between str_replace and str_ireplace is that str_ireplace is a case-insensitive.

Syntax:

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

Example :

PHP




<?php
// PHP program to remove all
// white spaces from a string 
    
$str = "  Geeks for   Geeks  "
    
// Using str_ireplace() function 
// to remove all whitespaces  
$str = str_ireplace (' ', '', $str);
  
// Printing the result
echo $str
?>


Output

neveropen

Method 3: Using preg_replace() Method: The preg_replace() method is used to perform a regular expression for search and replace the content.

Syntax:

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

Example :

PHP




<?php
// PHP program to remove all
// white spaces from a string 
    
$str = "  Geeks for   Geeks  "
    
// Using preg_replace() function 
// to remove all whitespaces  
$str = preg_replace('/\s+/', '', $str);
  
// Printing the result
echo $str
?>


Output

neveropen
RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS