http://CC318.com

一个程序的窝

我的窝窝 http://CC318.com 这里有更多内容,不信你试试.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
private void Button1_Click(object sender, System.EventArgs e)
        {
            string strContent = InputTextBox.Text;
            Regex urlregex = new Regex(@"(http:"/"/(["w.]+"/?)"S*)",RegexOptions.IgnoreCase| RegexOptions.CultureInvariant| RegexOptions.IgnorePatternWhitespace| RegexOptions.Compiled);
            strContent = urlregex.Replace(strContent, "<a href=""$1"" target=""_blank"">$1</a>");
            Regex emailregex = new Regex(@"([a-zA-Z_0-9.-]+"@[a-zA-Z_0-9.-]+"."w+)",RegexOptions.IgnoreCase| RegexOptions.CultureInvariant| RegexOptions.IgnorePatternWhitespace| RegexOptions.Compiled);
            strContent = emailregex.Replace(strContent, "<a href=mailto:$1>$1</a>");
            lbContent.Text += "<br>"+strContent;
        }
http://CC318.com