Regular Expression to find all tags except bold
I'm looking for a regular expression that will match all html tags except <B> or </B>.
I have the following to find all tags <[\s\S]+?> but I don't know how to find all tags *except* bold.
For example, some HTML to test with:
This <i>is</i> a <b>test</b>.
<h1>More</h1> code
A table <table><tr><td>code</td></tr></table>
Any help much appreciated.
|