Jump to content

removing spaces and lines


mraza

Recommended Posts

Hi,

I am trying to parse a html page, but i get a lot of empty spaces, please any idea how can i remove spaces, here is my text:

         
        
          
this          goes here



   
   
     








one line here

  







some other line here









see there is a lot of space between text,

 

thanks for any help

Link to comment
https://forums.phpfreaks.com/topic/220313-removing-spaces-and-lines/
Share on other sites

function replace_multiple_spaces($string)
{
// tabs, new lines and carriages are also replaced
$string = ereg_replace("[ \t\n\r]+", " ", $string);
return $string;
}
$string = "This
is
a   dummy
text. ";
$new_string = replace_multiple_spaces($string);
// Outputs: This is a dummy text
echo $new_string;

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.