Wanted to convert
<br/>
<br/>
<br/>
<br/>
<br/>
into
<br/>
|
|
|||
|
|
|
You can do this with a regular expression:
This if you pass in your source HTML, this will return a string with a single <br/> replacing every run of them. |
||||||||||
|
|
|
Mine is almost exactly the same as levik's (+1), just accounting for some different br formatting:
|
|||
|
|
|
Use a regular expression to match |
|||
|
|
|
|
Enhanced readability, shorter, produces correct output regardless of attributes:
|
||
|
|
|
|
You probably want to use a Regular Expression. I haven't tested the following, but I believe it's right.
|
||
|
|
|
|
without preg_replace, but works only in PHP 5.0.0+
|
||
|
|