Tagged Questions

3
votes
4answers
3k views

Regular Expression for domain from email address

Can anyone help me with a regular expression that will return the end part of an email address, after the @ symbol? I'm new to regex, but want to learn how to use it rather than writing inefficient ...
2
votes
4answers
276 views

Extract (multiple) emails from user-input text into the MailAddress format (.NET)

The MailAddress class doesn't provide a way to parse a string with multiple emails. The MailAddressCollection class does, but it only accepts CSV and does not allow commas inside of quotes. I am ...