im looking for a regex to strip the h3 tag and only the content should remain
eg.
<h3 id="123">my h3 tag</h3>
i need to strip the tag and be left with
my h3 tag
im currently have reMatchNoCase("(<h3)(.*?)(</h3>)",i)
this was parsed from many other parts of a string, not i need it cleaned to the content
thanks