Hi i need to extract http links from a set of text informations. particular phrases which has image extenstions(.jpg, .png)
For example, i want alone "http://www.mywedding.com/blog/wp-content/gallery/p_867/bridal-party-white-flowers-40306.jpg"
from the below set of thing
<p><a href="http://www.mywedding.com/blog/wp-content/gallery/p_867/bridal-party-white-flowers-40306.jpg" target="_blank"><a href="http://www.mywedding.com/blog/wp-content/gallery/p_867/bridal-party-white-flowers-40306.jpg">http://www.mywedding.com/blog/wp-content/gallery/p_867/bridal-party-white-flowers-40306.jpg</a></a> (from <a href="http://cameroningalls.com/emily-meeko-tiburon/" target="_blank">this wedding by Cameron Ingalls</a>)</p>
if those are img tags, i can get it from simple appraoch
String s="<img src="http://www.mywedding.com/blog/wp-content/gallery/p_867/bridal-party-white-flowers-40306.jpg"/>
s=s.replace("<img src=", "");
s=s.replace("/>", "");
But I am confused to get through first scenario, Any suggestions for it.
