Take the following code as an example
<a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://3.bp.blogspot.com/xxxxxxx.JPG"><img src="xxxxxxxxxxxxxx" alt="" width="200" height="150" border="0" /></a>
How can I create a regular expression to strip out any link tag containg the domain 'blogspot.com' from the img tag?
In the end I would want this
<img src="xxxxxxxxxxxxxx" alt="" width="200" height="150" border="0" />
Thanks in advance.