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:
|
|||
|
|
|
without preg_replace, but works only in PHP 5.0.0+
|
|||
|
|
|
Thanks all.. Used Jakemcgraw's (+1) version Just added the case insensative option..
Great tool to test those Regular expressions is: |
|||
|
|
You probably want to use a Regular Expression. I haven't tested the following, but I believe it's right.
|
|||
|
|
|
A fast, non regular-expression approach:
|
||||
|
|