码迷,mamicode.com
首页 > 其他好文 > 详细

网络抓取邮箱

时间:2015-06-30 21:36:28      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

namespace WindowsFormsApplication5
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            WebClient wc = new WebClient();//定义一个新的
            wc.Encoding = Encoding.Default;//定义他的格式,防止除乱码
            string url = textBox1.Text.Trim();//定义一个接收文本一的内容
            //if (string.IsNullOrEmpty(url))
            //{
            //    return;
            //}
            string html = wc.DownloadString(url);
            MatchCollection mc = Regex.Matches(html, @"[a-zA-Z0-9_\-\.]+@\w+(\.\w+)+");//邮箱的正则表达式
            StringBuilder sb = new StringBuilder();
            foreach (Match m in mc)
            {
                sb.AppendLine(m.Value);
            }
            textBox2.Text = sb.ToString();
            //File.WriteAllText(@"E:\1.txt", sb.ToString());
          StreamWriter sw = new StreamWriter(@"E:\1.txt",true);
            sw.WriteLine(sb.ToString());
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

    }

 

网络抓取邮箱

标签:

原文地址:http://www.cnblogs.com/w-wz/p/4611441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!