How would I use regex to parse the following:
<b>HelloWorld</b>
<p>This is a test</p>
<a href="myUrl">Google</a>
All html tags need to be removed and the urls extracted from hyperlink tags, and the result should be:
HelloWorld This is a test myUrl