感谢你:兄弟:)
现在还有你这么好地人,非常感谢!我的e_mail:[email protected]谢谢:)^_^

解决方案 »

  1.   

    不知道这回还有不有我的,每次这样的好事总没有一次轮到我
    [email protected]
      

  2.   

    谢谢你哦  [email protected]
      

  3.   

    谢谢,太感谢了,就差这个了,再次感谢!!!!!!!
    [email protected]
      

  4.   

    [email protected]
    致以诚至的感谢!
      

  5.   

    [email protected]
    也给我一份,好吗?多谢。
      

  6.   

    [email protected]
    学习下,谢谢
      

  7.   

    谢谢,发给我一个好吗?
    [email protected]
      

  8.   

    [email protected]谢谢!!!!
      

  9.   

    huobazi#183.ha.cn
    谢谢~~~~
      

  10.   

    e-mail:[email protected]谢谢!
      

  11.   

    希望大家多提意见,下面是我解析的上面各位留下的地址:
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
      

  12.   

    请给一份我看看,谢谢[email protected]
      

  13.   

    谢先,给我一份好吗?
    [email protected]
      

  14.   

    using System;
    using System.IO;
    using System.Net;
    using System.Text.RegularExpressions;class AppMain
    {
    static void Main(string[] args)
    {
    if (args.Length == 0)
    {
    Console.WriteLine("Error: Missing URL");
    return;
    }
    StreamReader reader = null;
    try
    {
    WebRequest request = WebRequest.Create(args[0]);
    WebResponse response = request.GetResponse();
    reader = new StreamReader(response.GetResponseStream());
    string content = reader.ReadToEnd();
    Regex regex = new Regex(
    "\\w+@\\w+(\\.\\w+)+",
    RegexOptions.IgnoreCase
    );
    MatchCollection matches = regex.Matches(content);
    foreach (Match match in matches)
    {
    Console.WriteLine(match.Groups[0]);
    }
    }
    catch (Exception e)
    {
    Console.WriteLine(e.Message);
    }
    finally
    {
    if (reader != null)
    reader.Close();
    }
    }
    }自己也随便写了一个:)不过是命令行下的:)
      

  15.   

    look look
    [email protected]
      

  16.   

    [email protected]
    还有吗?也给我一份啊
      

  17.   

    10.10发布,可以分析脚本,URL(隐藏的/显式的),Email、IP、域名等。Beta 已发,谢谢支持。
      

  18.   

    谢谢,给我一份吧[email protected]
      

  19.   

    麻烦你给我发一份吧!
    [email protected]
      

  20.   

    谢先,给我一份好吗?
    [email protected]
      

  21.   

    [email protected]
    谢谢
    谢谢
      

  22.   

    正则表达式的应用!
    中文匹配:    /^[\u4E00-\u9FA0]+$/"^\\d+$"  //非负整数(正整数 + 0) 
    "^[0-9]*[1-9][0-9]*$"  //正整数 
    "^((-\\d+)|(0+))$"  //非正整数(负整数 + 0) 
    "^-[0-9]*[1-9][0-9]*$"  //负整数 
    "^-?\\d+$"    //整数 
    "^\\d+(\\.\\d+)?$"  //非负浮点数(正浮点数 + 0) 
    "^(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*))$"  //正浮点数 
    "^((-\\d+(\\.\\d+)?)|(0+(\\.0+)?))$"  //非正浮点数(负浮点数 + 0) 
    "^(-(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"  //负浮点数 
    "^(-?\\d+)(\\.\\d+)?$"  //浮点数 
    "^[A-Za-z]+$"  //由26个英文字母组成的字符串 
    "^[A-Z]+$"  //由26个英文字母的大写组成的字符串 
    "^[a-z]+$"  //由26个英文字母的小写组成的字符串 
    "^[A-Za-z0-9]+$"  //由数字和26个英文字母组成的字符串 
    "^\\w+$"  //由数字、26个英文字母或者下划线组成的字符串 
    "^[\\w-]+(\\.[\\w-]+)*@[\\w-]+(\\.[\\w-]+)+$"    //email地址 
    "^[a-zA-z]+://(\\w+(-\\w+)*)(\\.(\\w+(-\\w+)*))*(\\?\\S*)?$" //url