hi
Now Remember that i can only show you the door , you are the only person who have to walk throught it. i have created a substring and displayed them on the Messagebox, you have to assign that to the Array. here is the example code
String myString = @"<RssFeeds<link>http://www.codeguru.com/icom_includes/feeds/codeguru/rss-all.xml</link>
<title>CodeGuru.com</title> <description>something</description></RssFeeds><RssFeeds><link>http://lifehacker.com/index.xml</link>
<title>Lifehacker</title>
<description>something</description>
</RssFeeds> ";
MessageBox.Show(myString.Substring(15, 64)); /*It gave me <a href="http://www.codeguru.com/icom_includes/feeds/codeguru/rss-all.xml">http://www.codeguru.com/icom_includes/feeds/codeguru/rss-all.xml</a> */
MessageBox.Show(myString.Substring(99,12)); //CodeGuru.com
Hope this Helps