Jump to content

[SOLVED] replace a <br /> with an empty space


tecmeister

Recommended Posts

Hi Guys,

 

I'm trying to replace <br /> with an empty space.  I'm removing the br / but not the < >.  This is the code I'm using:

 

$about = $row['about'];
$br = "<br />";
echo preg_replace($br," ",nl2br($about));

 

How do I remove the < > aswell?

 

Thanks,

 

tecmeister.

Link to comment
https://forums.phpfreaks.com/topic/181633-solved-replace-a-with-an-empty-space/
Share on other sites

You shouldn't be using PCRE functions when you don't need to, they use a lot more resources than you need to waste. Instead use str_replace(). The reason why it's only replacing br / is because preg_replace is trying to use < and > as delimiters.

 

echo str_replace("<br />", " ", nl2br($about));

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.