Here's sample lines I'm working with:
<br/>
About Company Name<br/>
<p>This is just some random text About nothing.</p>
<br/>
Basically I want to manipulate any line that begins with About and ends with <br/>.
I just want to bold it like this: <b>About Company Name</b><br/>
I can find that text like this:
^About.*<br/>
But I can't figure out how to add the bold symbols. Any help would be appreciated.
preg_replace('~^(About.*)(<br\s*/>\s*)$~m', '<p>$1</p>$2', $s).