i want to replace html links in a string with text links, for example:
<a href="test.com">
should become test.com
.
I cant figure out any regex matching all my patterns. Cause links might have more attributes in different orders:
<a class="test" href="test.com" title="test">
How can i achieve that?