All Tags »
Image Link anchor html
Sorry, but there are no more tags available to filter with.
-
I want to write an regex for all image link in a html page. e.g. it should match all <a href='' ><img src='' /></a>
I have written one like: (<a[^>]*)(href=)(.*?)(><img[^>]*>(.*?)(</img>)?</a>)
It is matching it correctly but in case there are some anchors continously and then one ...