I need to remove all whitespaces between BR tags
This is my String:
<br /> <br /> <br /> <br />
Output Should be:
<br /><br /><br /><br />
Here is my Code:
$str = preg_replace("%<br />s*<br />%", "<br />", $str);
This should work to my knowledge but I can’t get it to work.
Any suggest should be appreciated.
Is for remove the spaces in wp tittle http://mp3goo.com, or is there any other way to clean the Title in wordpress?
Here’s a more robust pattern.
It matches all the following:
<br>
<br >
<br/>
<br />
Usage:
Output:
Demo
Since the tags are self-closing, you’ll want to replace the white-space at either side.