Skip to content

Instantly share code, notes, and snippets.

@ElemarJR
Created August 1, 2012 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ElemarJR/3226629 to your computer and use it in GitHub Desktop.
Save ElemarJR/3226629 to your computer and use it in GitHub Desktop.
public async void PrintLinksFromMSDNAsync()
{
var wc = new WebClient()
var response = await wc.DownloadStringTaskAsync("http://msdn.microsoft.com/pt-br/");
var regex = "href\\s*=\\s*(?:\"(?[^\"]*)\"|(?\\S+))";
var matches = Regex.Matches(response, regex);
foreach (Match match in matches)
Console.WriteLine(match.Groups[1]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment