Remove All Spaces Out of a String in PHP

phpCopy<?php 
$searchString = " ";
$replaceString = "";
$originalString = "This is a programming tutorial"; 
 
$outputString = preg_replace('/\s+/', '', $originalString); 
echo("The original string is: $originalString \n");  
echo("The string without spaces is: $outputString \n"); 
?> 

4
2

                                    phpCopy&lt;?php 
$searchString = &quot; &quot;;
$replaceString = &quot;&quot;;
$originalString = &quot;This is a programming tutorial&quot;; 
 
$outputString = str_replace($searchString, $replaceString, $originalString); 
echo(&quot;The original string is: $originalString \n&quot;);  
echo(&quot;The string without spaces is: $outputString&quot;); 
  
?&gt; 

4 (2 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
php remove everything after space remove space in between string in php php strip spaces from a string php remove all starting spaces php remove empty spaces php remove all space from string string remove space php remove empty space string php remove spaces between string php how to remove spaces from before string in php remove data after space in php how o delete space php remove empty space from string php php remove all whitespaces php remove extra space from string php remove all spaces how to remove spaces in php remove double space from sting php remove spaces between words in php remove spaces from end in string php remove spaces from string in php remove space from left and right php trim all spaces php how to remove a string after space in php how to delete a text after space in php delete all space string php remove repeteted spaces php remove any spaces in string php php string remove all spaces remove space on text php remove all extra space to one space php php remove space from string delete space php how to remove a space between string using php remove space from string left right php how to remove space in string in php remove space in string php remove all spaces and line breaks php php remove all spaces from string php array remove spaces from all values remove extra spaces in string php php remove all whitespace from string remove all spaces from string php php delete spaces from string remove unwanted spaces in php string delete space in string php remove extra space in php remove spaces from start and end of string php remove space at the end of string php remove unwanted space from string php how to remove all extra spaces in between words string in php php delete space from string string space remove in php remove spaces php remove all whitespace from string php without &amp; remove all whitespace from string php php remove extra spaces between words php function to remove spaces in between a string space remove in % php php remove spaces php remove all whitespace php delete spaces in a string php remove spaces between words remove space from string php remove all spaces in start of string in php php remove empty spaces from string trim all spaces in php Delete all spaces in array php php remove space in string remove space from string in php remove the spaces in string php remove spaces from string php delete string spaces in php php remove spaces from string
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source