Here is simple function to extract links from html source code... You need to use namespaces System.Text.RegularExpressions and System.Collections.Generic
public static List<string> getLinks(string data)
{
Regex rx = new Regex("<a href=\"([^>\"]+)[^>]*\">");
List<string> forReturn = new List<string>();
foreach(Match m in rx.Matches(data))
forReturn.Add(m.Groups[1].Value);
return forReturn;
}
2009/11/24 iwork iwork <[email protected]>
> Me too.
>
