Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have my code removing the <p> starting tags, but now I want to replace the ending </p> tags with line breaks. How can I do this?

This is what I have:

$content = 'This is the content';
$newcontent = preg_replace("/<p[^>]*?>", "", $content);
$newcontent = preg_replace("</p>", "<br />", $newcontent);
share|improve this question
1  
Why would you want to do this? <p> is semantic, while <br/> is rarely so. – outis Mar 14 '11 at 2:53
Well it's necessary for what I'm doing because I'm actually using this in shortcodes for WordPress, and there's a bug with multiple lines inside the shortcodes and I'm trying to find a workaround for it until they fix it. – Jared Mar 14 '11 at 3:04
there's also reasons to do this for html email purposes - so it's not that strange a request – andyface Mar 21 '11 at 10:36

1 Answer

up vote 6 down vote accepted

use str_replace instead of preg_replace, so:

$content = '<p>This is a new content for missing slash</p>';
$newcontent = preg_replace("/<p[^>]*?>/", "", $content);
$newcontent = str_replace("</p>", "<br />", $newcontent);
share|improve this answer
Can't believe I forgot that, wow! Lol thanks. – Jared Mar 14 '11 at 2:47
@Jared - if RIMMER's answer solved your problem, you should accept it. – Ken White Mar 14 '11 at 2:49
It told me I had to wait 11 minutes. :P Anyways, is there now a way to replace </div><br /><br /> with just </div> from that string? I know it's a little weird but it's necessary for what I'm working on. – Jared Mar 14 '11 at 3:02
$newcontent = str_replace("</div><br /><br />", "</div>", $newcontent); – Richard Rodriguez Mar 14 '11 at 3:09
Duh - figured out my problem. :P Thanks for your help. – Jared Mar 14 '11 at 4:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.