vote up 2 vote down star

Wanted to convert

<br/>
<br/>
<br/>
<br/>
<br/>

into

<br/>
flag
Are you looking for a PHP program that will input an HTML file and reduce the BR tags? It's not entirely clear from your question. – devinmoore Sep 25 '08 at 14:13

6 Answers

vote up 12 vote down check

You can do this with a regular expression:

preg_replace("/(<br\s*\/?>\s*)+/", "<br/>", $input);

This if you pass in your source HTML, this will return a string with a single <br/> replacing every run of them.

link|flag
Does it ignore whitespace between the <br/>? – Sam Sep 25 '08 at 14:21
this allows for any whitespace chars (space, tab, newline) between <br/> – enobrev Sep 25 '08 at 14:25
@Sam: the \s means 'any whitespace character'. – sixlettervariables Sep 25 '08 at 14:28
@levik: you should change it to /(<br\s*\/?>\s*)+/ for a more robust/general matching of HTML/SGML/XHTML br's. – sixlettervariables Sep 25 '08 at 14:29
Done. Thanks for the advice. – levik Sep 25 '08 at 14:33
show 3 more comments
vote up 4 vote down

Mine is almost exactly the same as levik's (+1), just accounting for some different br formatting:

preg_replace('/(<br[^>]*>\s*){2,}/', '<br/>', $sInput);
link|flag
Slightly better than levik's, and should even be faster. – Konrad Rudolph Sep 25 '08 at 14:29
vote up 2 vote down

Use a regular expression to match <br/> one or more times, then use preg_replace (or similar) to replace with <br/> such as levik's reply.

link|flag
vote up 2 vote down

Enhanced readability, shorter, produces correct output regardless of attributes:

preg_replace('{(<br[^>]*>\s*)+}', '<br/>', $input);
link|flag
vote up 0 vote down

You probably want to use a Regular Expression. I haven't tested the following, but I believe it's right.

$text = preg_replace( "/(<br\s?\/?>)+/i","<br />", $text );
link|flag
vote up 0 vote down

without preg_replace, but works only in PHP 5.0.0+

$a = '<br /><br /><br /><br /><br />';
while(($a = str_ireplace('<br /><br />', '<br />', $a, $count)) && $count > 0)
{}
// $a becomes '<br />'
link|flag

Your Answer

Get an OpenID
or

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