If I have a bunch of urls like this:
<li><a href="http://www.xyz.com/sometext/someothertext/123/sometext/">Xyz 123</a></li>
<li><a href="http://www.xyz.com/345/sometext/someothertext/">Xyz 345</a></li>
What would a regex look like to erase the urls inside the hrefs so that they become:
<li><a href="">Xyz 123</a></li>
<li><a href="">Xyz 345</a></li>