How can I delete multiple tags of both opening and closing tags but keep the text between tags?
I want to delete multiple tags of both opening and closing tags.
For example, in the next tags,
<span class="b">text</span>
I want to delete both <span class="b"> and </span>
but text should not be deleted.
There are a lot of codes like
<span class="b">text</span>
<span class="b">happy</span>
<span class="b">time</span>
How can I delete not only <span class="b">, but also </span> but keep the
text
happy
time
? (in the example above)
Thank you for your help.
