public static string UBBImageToHTML( string ubb )
{
string pattern = @"\[img\](.[^\[]*)\[\/img\]";
Regex regex = new Regex( pattern, RegexOptions.IgnoreCase );
ubb = regex.Replace( ubb, "<img src=\"$1\" alt=\"\"/>", -1 );
return ubb;
}

解决方案 »

  1.   

    贴个彻底的public static string FormatDetail(string sDetail)
    {
    Regex r;
    Match m;//处理空格
    sDetail = sDetail.Replace(" ","&nbsp;");
    sDetail = sDetail.Replace("<","&lt;");
    sDetail = sDetail.Replace(">","&gt;");
    //sDetail = sDetail.Replace("\r\n","<BR><BR>");
    //sDetail = sDetail.Replace("\n","<BR>");
    //处标记
    r = new Regex(@"(\[b\])([ \S\t]*?)(\[\/b\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<B>" + m.Groups[2].ToString() + "</B>");
    }
    //处标记
    r = new Regex(@"(\[i\])([ \S\t]*?)(\[\/i\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<I>" + m.Groups[2].ToString() + "</I>");
    }
    //处标记
    r = new Regex(@"(\[U\])([ \S\t]*?)(\[\/U\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<U>" + m.Groups[2].ToString() + "</U>");
    }
    //处[p][/p]标记
    r = new Regex(@"((\r\n)*\[p\])(.*?)((\r\n)*\[\/p\])",RegexOptions.IgnoreCase|RegexOptions.Singleline);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<P class=\"pstyle\">" + m.Groups[3].ToString() + "</P>");
    }
    //处[sup][/sup]标记
    r = new Regex(@"(\[sup\])([ \S\t]*?)(\[\/sup\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<SUP>" + m.Groups[2].ToString() + "</SUP>");
    }
    //处[sub][/sub]标记
    r = new Regex(@"(\[sub\])([ \S\t]*?)(\[\/sub\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<SUB>" + m.Groups[2].ToString() + "</SUB>");
    }
    //处标记
    r = new Regex(@"(\[url\])([ \S\t]*?)(\[\/url\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<A href=\"" + m.Groups[2].ToString() + "\" target=\"_blank\"><IMG border=0 src=\"images/url.gif\">" +
    m.Groups[2].ToString() + "</A>");
    }
    //处xxx标记
    r = new Regex(@"(\[url=([ \S\t]+)\])([ \S\t]*?)(\[\/url\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<A href=\"" + m.Groups[2].ToString() + "\" target=\"_blank\"><IMG border=0 src=\"images/url.gif\">" +
    m.Groups[3].ToString() + "</A>");
    }
    //处[email][/email]标记
    r = new Regex(@"(\[email\])([ \S\t]*?)(\[\/email\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<A href=\"mailto:" + m.Groups[2].ToString() + "\" target=\"_blank\"><IMG border=0 src=\"images/email.gif\">" +
    m.Groups[2].ToString() + "</A>");
    }
    //处[email=xxx][/email]标记
    r = new Regex(@"(\[email=([ \S\t]+)\])([ \S\t]*?)(\[\/email\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<A href=\"mailto:" + m.Groups[2].ToString() + "\" target=\"_blank\"><IMG border=0 src=\"images/email.gif\">" +
    m.Groups[3].ToString() + "</A>");
    }
    //处[size=x][/size]标记
    r = new Regex(@"(\[size=([1-7])\])([ \S\t]*?)(\[\/size\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<FONT SIZE=" + m.Groups[2].ToString() + ">" + 
    m.Groups[3].ToString() + "</FONT>");
    }
    //处标记
    r = new Regex(@"(\[color=([\S]+)\])([ \S\t]*?)(\[\/color\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<FONT COLOR=" + m.Groups[2].ToString() + ">" + 
    m.Groups[3].ToString() + "</FONT>");
    }
    //处[font=x][/font]标记
    r = new Regex(@"(\[font=([\S]+)\])([ \S\t]*?)(\[\/font\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<FONT FACE=" + m.Groups[2].ToString() + ">" + 
    m.Groups[3].ToString() + "</FONT>");
    }
    //处理图片链接
    r = new Regex("\\[picture\\](\\d+?)\\[\\/picture\\]",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<A href=\"ShowImage.aspx?Type=ALL&Action=forumImage&ImageID=" + m.Groups[1].ToString() +
    "\" target=\"_blank\"><IMG border=0 Title=\"点击打开新窗口查看\" src=\"ShowImage.aspx?Action=forumImage&ImageID=" + m.Groups[1].ToString() +
    "\"></A>");
    }
    //处理[align=x][/align]
    r = new Regex(@"(\[align=([\S]+)\])([ \S\t]*?)(\[\/align\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<P align=" + m.Groups[2].ToString() + ">" + 
    m.Groups[3].ToString() + "</P>");
    }
    //处[H=x][/H]标记
    r = new Regex(@"(\[H=([1-6])\])([ \S\t]*?)(\[\/H\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<H" + m.Groups[2].ToString() + ">" + 
    m.Groups[3].ToString() + "</H" + m.Groups[2].ToString() + ">");
    }//处理[list=x][*][/list]
    r = new Regex(@"(\[list(=(A|a|I|i| ))?\]([ \S\t]*)\r\n)((\[\*\]([ \S\t]*\r\n))*?)(\[\/list\])",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    string strLI = m.Groups[5].ToString();
    Regex rLI = new Regex(@"\[\*\]([ \S\t]*\r\n?)",RegexOptions.IgnoreCase);
    Match mLI;
    for (mLI = rLI.Match(strLI); mLI.Success; mLI = mLI.NextMatch()) 
    {
    strLI = strLI.Replace(mLI.Groups[0].ToString(),"<LI>" + mLI.Groups[1]);
    }sDetail = sDetail.Replace(m.Groups[0].ToString(),
    "<UL TYPE=\"" + m.Groups[3].ToString() + "\"><B>" + m.Groups[4].ToString() + "</B>" + 
    strLI + "</UL>");
    }//处理换行,在每个新行的前面添加两个全角空格
    r = new Regex(@"(\r\n((&nbsp;)| )+)(?<正文>\S+)",RegexOptions.IgnoreCase);
    for (m = r.Match(sDetail); m.Success; m = m.NextMatch()) 
    {
    sDetail = sDetail.Replace(m.Groups[0].ToString(),"<BR>  " + m.Groups["正文"].ToString());
    }
    //处理换行,在每个新行的前面添加两个全角空格
    sDetail = sDetail.Replace("\r\n","<BR>");
    return sDetail;//return "<P Style=\"LINE-HEIGHT: 13pt;word-wrap:break-word;FONT-FAMILY: 宋体;\">" + sDetail + "</P>";
    }