Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Remove All Spaces Out of a String in PHP

phpCopy<?php 
$searchString = " ";
$replaceString = "";
$originalString = "This is a programming tutorial"; 
 
$outputString = str_replace($searchString, $replaceString, $originalString); 
echo("The original string is: $originalString 
");  
echo("The string without spaces is: $outputString"); 
  
?> 
Source by www.delftstack.com #
 
PREVIOUS NEXT
Tagged: #Remove #All #Spaces #Out #String #PHP
ADD COMMENT
Topic
Name
5+2 =