I'm using grep in BBedit 8 and i have a decent handle on it, but i can't seem to format this search correctly:
I want to find and replace
Code:
<p><b>About Company</b>
Paragraph begins here about company.
but not
Code:
<p><b>Another thing</b>
<p>Another paragraph.
I can get to the point of finding only the first phrase (thats what i want) but when it does the replace it cuts off the first letter of the paragraph. So this search:
Code:
search: </b>\r[^<p>]
replace: </b><br>\r
Returns:
Code:
<p><b>About Company</b><br>
aragraph begins here about company.
I've tried a million variations. I know this would be simple for a smart person. Please let me know if you are able to help. Thanks.