Skip to content

Instantly share code, notes, and snippets.

@aanguelov
Created May 13, 2015 13:49
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 aanguelov/691ae4a1788507de76d5 to your computer and use it in GitHub Desktop.
Save aanguelov/691ae4a1788507de76d5 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace ExtractEmails
{
class ExtractEmails
{
static void Main()
{
string text = Console.ReadLine();
string pattern = @"([\w.-]+@[\w.-]+)";
MatchCollection matches = Regex.Matches(text, pattern);
foreach (var match in matches)
{
Console.WriteLine(match);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment