Jump to content

Remove multiple lines


techcone

Recommended Posts

hmm, was pondering and this may also work...

$output = str_replace("\n", "\n " $input); //add spaces after all \n's
$output = str_replace("  ", " " $output); //replace double spacing with single
$output = str_replace("\n \n ", "\n ", $output); //replace all occurrences of two \n's with single

 

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.