这是一个JavaScript中的UBBCODE替换:
html=html.replace(/(\[IMG\])(.[^\[]*)(\[\/IMG\])/ig,'<a href="$2" target=_blank><IMG SRC="$2" border=0 alt=按此在新窗口浏览图片 onload="javascript:if(this.width>screen.width-333) this.width=screen.width-333"></a>');
现在要改为C#下的ASPX,由于有较多类似的正则表达式,所以希望速度较快,StringBuilder不行吗?为什么?现在将它改为:
html=Regex.Replace(html,@"(\[IMG\])(.[^\[]*)(\[\/IMG\])",@"<a href=\"$2\" target=_blank><IMG SRC=\"$2\" border=0 alt=按此在新窗口浏览图片 onload=\"javascript:if(this.width>screen.width-333) this.width=screen.width-333\"></a>", RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
后报错:
编译器错误信息: CS1026: 应输入 )

解决方案 »

  1.   

    string html="dsafds";string regStr,toStr;
    regStr=@"(\[IMG\])(.[^\[]*)(\[\/IMG\])";
    toStr=@"<a href=""$2"" target=_blank><IMG SRC=""$2"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333) this.width=screen.width-333""></a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[DIR=*([0-9]*),*([0-9]*)\](.[^\[]*)\[\/DIR]";
    toStr=@"<object classid=clsid:166B1BCA-3F9C-11CF-8075-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=7,0,2,0 width=$1 height=$2><param name=src value=$3><embed src=$3 pluginspage=http://www.macromedia.com/shockwave/download/ width=$1 height=$2></embed></object>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[QT=*([0-9]*),*([0-9]*)\](.[^\[]*)\[\/QT]";
    toStr=@"<embed src=$3 width=$1 height=$2 autoplay=true loop=false controller=true playeveryframe=false cache=false scale=TOFIT bgcolor=#000000 kioskmode=false targetcache=false pluginspage=http://www.apple.com/quicktime/>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[MP=*([0-9]*),*([0-9]*)\](.[^\[]*)\[\/MP]";
    toStr=@"<object align=middle classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 class=OBJECT id=MediaPlayer width=$1 height=$2 ><param name=ShowStatusBar value=-1><param name=Filename value=$3><embed type=application/x-oleobject codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 flename=mp src=$3  width=$1 height=$2></embed></object>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[RM=*([0-9]*),*([0-9]*)\](.[^\[]*)\[\/RM]";
    toStr=@"<OBJECT classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA class=OBJECT id=RAOCX width=$1 height=$2><PARAM NAME=SRC VALUE=$3><PARAM NAME=CONSOLE VALUE=Clip1><PARAM NAME=CONTROLS VALUE=imagewindow><PARAM NAME=AUTOSTART VALUE=true></OBJECT><br><OBJECT classid=CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA height=32 id=video2 width=$1><PARAM NAME=SRC VALUE=$3><PARAM NAME=AUTOSTART VALUE=-1><PARAM NAME=CONTROLS VALUE=controlpanel><PARAM NAME=CONSOLE VALUE=Clip1></OBJECT>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[FLASH\])(.+?)(\[\/FLASH\])";
    toStr=@"<OBJECT codeBase=""http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"" classid=""clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"" width=500 height=400><PARAM NAME=movie VALUE=""$2""><PARAM NAME=quality VALUE=high><embed src=""$2"" quality=high pluginspage=""http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"" type=""application/x-shockwave-flash"" width=500 height=400>$2</embed></OBJECT>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[ZIP\])(.+?)(\[\/ZIP\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/zip.gif"" border=0><a href=""'+ picpath +'$2"">点击下载该文件</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[RAR\])(.+?)(\[\/RAR\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/rar.gif"" border=0><a href=""'+ picpath +'$2"">点击下载该文件</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[UPLOAD=gif\])(.+?)(\[\/UPLOAD\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/gif.gif"" border=0>此主题相关图片如下:<br><A HREF=""'+ picpath +'$2"" TARGET=_blank><IMG SRC=""'+ picpath +'$2"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333)this.width=screen.width-333""></A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[UPLOAD=jpg\])(.+?)(\[\/UPLOAD\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/jpg.gif"" border=0>此主题相关图片如下:<br><A HREF=""'+ picpath +'$2"" TARGET=_blank><IMG SRC=""'+ picpath +'$2"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333)this.width=screen.width-333""></A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[UPLOAD=bmp\])(.+?)(\[\/UPLOAD\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/bmp.gif"" border=0>此主题相关图片如下:<br><A HREF=""'+ picpath +'$2"" TARGET=_blank><IMG SRC=""'+ picpath +'$2"" border=0 alt=按此在新窗口浏览图片 onload=""javascript:if(this.width>screen.width-333)this.width=screen.width-333""></A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[UPLOAD=(\S+?)\])(.+?)(\[\/UPLOAD\])";
    toStr=@"<br><IMG SRC=""'+ systempath +'images/other.gif"" border=0> <a href=""'+ picpath +'$3"">点击浏览该文件</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[URL\])(\S+?)(\[\/URL\])";
    toStr=@"<A HREF=""$2"" TARGET=_blank>$2</A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[URL=(\S+?)\])(.+?)(\[\/URL\])";
    toStr=@"<A HREF=""$2"" TARGET=_blank>$3</A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[EMAIL\])(\S+\@\S+?)(\[\/EMAIL\])";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/email.gif""><A HREF=""mailto:$2"">$2</A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[EMAIL=(\S+\@\S+?)\])(.+?)(\[\/EMAIL\])";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/email.gif""><A HREF=""mailto:$2"" TARGET=_blank>$3</A>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
      

  2.   


    regStr=@"^(http:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(http:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)$";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"[^>=""](http:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"^(ftp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(ftp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)$";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"[^>=""](ftp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"^(rtsp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(rtsp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)$";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"[^>=""](rtsp:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"^(mms:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(mms:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)$";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"[^>=""](mms:\/\/[A-Za-z0-9\.\/=\?%\-&_~`@':+!]+)";
    toStr=@"<img align=absmiddle src=""'+ systempath +'images/url.gif""><a target=_blank href=$1>$1</a>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[code\])(.[^\[]*)(\[\/code\])";
    toStr=@"<table width=""100%"" border=0 cellspacing=0 cellpadding=6 bgcolor=""'+ abgcolor +'""><td><b>以下内容为程序代码:</b><br>$2</td></table>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[color=(.[^\[]*)\])(.[^\[]*)(\[\/color\])";
    toStr=@"<font color=$2>$3</font>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[face=(.[^\[]*)\])(.[^\[]*)(\[\/face\])";
    toStr=@"<font face=$2>$3</font>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[align=(.[^\[]*)\])(.*)(\[\/align\])";
    toStr=@"<div align=$2>$3</div>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[QUOTE\])(.*)(\[\/QUOTE\])";
    toStr=@"<table cellpadding=0 cellspacing=0 border=0 WIDTH=""94%"" bgcolor=#000000 align=center><tr><td><table width=100% cellpadding=5 cellspacing=1 border=0><TR><TD BGCOLOR=""'+ abgcolor +'"">$2</table></table><br>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[fly\])(.*)(\[\/fly\])";
    toStr=@"<marquee width=""90%"" behavior=alternate scrollamount=3>$2</marquee>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[move\])(.*)(\[\/move\])";
    toStr=@"<MARQUEE scrollamount=3>$2</marquee>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[GLOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)\](.[^\[]*)\[\/GLOW]";
    toStr=@"<table width=$1 style=""filter:glow(color=$2, strength=$3)"">$4</table>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[SHADOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)\](.[^\[]*)\[\/SHADOW]";
    toStr=@"<table width=$1 style=""filter:shadow(color=$2, strength=$3)"">$4</table>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[i\])(.[^\[]*)(\[\/i\])";
    toStr=@"<i>$2</i>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[u\])(.[^\[]*)(\[\/u\])";
    toStr=@"<u>$2</u>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[b\])(.[^\[]*)(\[\/b\])";
    toStr=@"<b>$2</b>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[fly\])(.[^\[]*)(\[\/fly\])";
    toStr=@"<marquee>$2</marquee>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"\[size=(\d)\](.[^\[]*)(\[\/size\])";
    toStr=@"<font size=$1>$2</font>";
    html=Regex.Replace(html,regStr,toStr,RegexOptions.IgnoreCase | RegexOptions.Singleline| RegexOptions.Multiline);
    regStr=@"(\[center\])(.[^\[]*)(\[\/center\])";
    toStr=@"<center>$2</center>";Response.Write(html+"<br>");