How to separate img tags in description of xml (RSS FEED)

I am unable to retrieve images from RSS feeds i.e., in description.I am using the following code to retrieve information.\[code\] var rssFeed = from el in doc.Elements("rss").Elements("channel").Elements("item") orderby datetime(el.Element("pubDate").Value) descending select new { Title = el.Element("title").Value, Link = el.Element("link").Value, Description =el.Element("description").Value, PubDate = datetime(el.Element("pubDate").Value), };\[/code\]When Description is being displayed, both text and image are being displayed togatherI want to separate text and image in description. Can you please let me know how to proceed. RSS Feed used : http://news.yahoo.com/rss/
 
Back
Top