C#正则实现Ubb解析类的代码

解析得到的代码能通过XHTML 1.0 STRICT验证;

包含了标题,链接,字体,对齐,图片,引用,列表等方面的功能. 

Ubb.ReadMe.htm

<h1>UBB代码说明</h1> <h2>标题</h2> <dl> <dt>[h1]标题一[/h1]</dt> <dd><h1>标题一</h1></dd> <dt>[h2]标题二[/h2]</dt> <dd><h2>标题二</h2></dd> <dt>[h1]标题三[/h1]</dt> <dd><h3>标题三</h3></dd> <dt>[h4]标题四[/h4]</dt> <dd><h4>标题四</h4></dd> <dt>[h5]标题五[/h5]</dt> <dd><h5>标题五</h5></dd> <dt>[h6]标题六[/h6]</dt> <dd><h6>标题六</h6></dd> </dl> <h2>链接</h2> <dl> <dt>[url]www.unibetter.com[/url]</dt> <dd><a rel="nofollow" href="http://www.unibetter.com">unibetter.com</a></dd> <dt>[url]http://www.unibetter.com[/url]</dt> <dd><a rel="nofollow" href="http://www.unibetter.com">http://www.unibetter.com</a></dd> <dt>[url=http://www.unibetter.com]unibetter大学生论坛[/url]</dt> <dd><a rel="nofollow" href="http://www.unibetter.com" title="unibetter大学生论坛">unibetter大学生论坛</a></dd> <dt>[email]none@none.com[/email]</dt> <dd><a href="mailto:none@none.com">none@none.com</a></dd> </dl> <h2>字体大小</h2> <dl> <dt>[size=xx-small]文字大小[/size]</dt> <dd><span style="font-size:xx-small">文字大小</span></dd> <dt>[size=x-small]文字大小[/size]</dt> <dd><span style="font-size:x-small">文字大小</span></dd> <dt>[size=small]文字大小[/size]</dt> <dd><span style="font-size:small">文字大小</span></dd> <dt>[size=medium]文字大小[/size]</dt> <dd><span style="font-size:medium">文字大小</span></dd> <dt>[size=large]文字大小[/size]</dt> <dd><span style="font-size:large">文字大小</span></dd> <dt>[size=x-large]文字大小[/size]</dt> <dd><span style="font-size:x-large">文字大小</span></dd> <dt>[size=xx-large]文字大小[/size]</dt> <dd><span style="font-size:xx-large">文字大小</span></dd> </dl> <h2>字体格式</h2> <dl> <dt>[font=黑体]文字字体[/font]</dt> <dd><span style="font-family:黑体">文字字体</span></dd> <dt>[color=red]文字颜色[/color]</dt> <dd><span style="color:red">文字颜色</span></dd> <dt>[color=#0000ff]文字颜色[/color]</dt> <dd><span style="color:#0000ff">文字颜色</span></dd> <dt>[b]粗体字[/b]</dt> <dd><strong>粗体字</strong></dd> <dt>[i]斜体字[/i]</dt> <dd><i>斜体字</i></dd> <dt>[u]下划线[/u]</dt> <dd><span style="text-decoration:underline">下划线</span></dd> </dl> <h2>对齐</h2> <dl> <dt>[left]左对齐[/left]</dt> <dd>左对齐</dd> <dt>[right]右对齐[/right]</dt> <dd>右对齐</dd> <dt>[center]右对齐[/center]</dt> <dd>居中</dd> </dl> <h2>图片</h2> <dl> <dt>[hr]</dt> <dd><hr /></dd> <dt>[img]http://www.w3.org/Icons/valid-xhtml10[/img]</dt> <dd><img src="http://www.w3.org/Icons/valid-xhtml10" alt="" /></dd> <dt>[img=176x62]http://www.w3.org/Icons/valid-xhtml10[/img]</dt> <dd><img src="http://www.w3.org/Icons/valid-xhtml10" style="width:176px;height:62px" alt="" /></dd> </dl> <h2>引用</h2> <dl> <dt>[quote]毛主席他老人家说:一切反动派都是纸老虎![/quote]</dt> <dd><blockquote>毛主席他老人家说:一切反动派都是纸老虎!</blockquote></dd> </dl> <h2>列表</h2> <h3>无序列表</h3> <p>[list] [*]苹果 [*]香蕉 [*]桃 [/list]</p> <ul><li>苹果</li><li>香蕉</li><li>桃</li></ul> <h3>有序列表</h3> <p>[list=1] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]</p> <ol style="list-style:decimal;"><li>打开冰箱门</li><li>把大象赶进冰箱</li><li>关上冰箱门</li></ol> <p>[list=i] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]</p> <ol style="list-style:lower-roman;"><li>打开冰箱门</li><li>把大象赶进冰箱</li><li>关上冰箱门</li></ol> <p>[list=I] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]</p> <ol style="list-style:upper-roman;"><li>打开冰箱门</li><li>把大象赶进冰箱</li><li>关上冰箱门</li></ol> <p>[list=a] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]</p> <ol style="list-style:lower-alpha;"><li>打开冰箱门</li><li>把大象赶进冰箱</li><li>关上冰箱门</li></ol> <p>[list=A] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]</p> <ol style="list-style:upper-alpha;"><li>打开冰箱门</li><li>把大象赶进冰箱</li><li>关上冰箱门</li></ol>

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

复制代码 代码如下:

//作者:deerchao 

// http://www.unibetter.com/blogs/blogdeerchao/default.aspx 

//在不移除以上(及本条)注释的前提下,任何人可以以任何方式使用此代码.

using System; 

using System.Collections.Generic; 

using System.Text; 

using System.Web; 

using System.Text.RegularExpressions;

namespace Deerchao.Web 



    public class UbbDecoder 

    { 

        private static readonly RegexOptions options = RegexOptions.Compiled | RegexOptions.Singleline;

/// <summary> 

        /// 解析Ubb代码为Html代码 

        /// </summary> 

        /// <param name="ubb">Ubb代码</param> 

        /// <returns>解析得到的Html代码</returns> 

        public static string Decode(string ubb) 

        { 

            if (string.IsNullOrEmpty(ubb)) 

                return null; 

            string result = ubb; 

            result = HttpUtility.HtmlEncode(result);

result = DecodeStyle(result); 

            result = DecodeFont(result); 

            result = DecodeColor(result); 

            result = DecodeImage(result); 

            result = DecodeLinks(result); 

            result = DecodeQuote(result); 

            result = DecodeAlign(result); 

            result = DecodeList(result); 

            result = DecodeHeading(result); 

            result = DecodeBlank(result);

return result; 

        }

/// <summary> 

        /// 解析Ubb代码为Html代码,所有的链接为rel="nofollow" 

        /// </summary> 

        /// <param name="ubb">Ubb代码</param> 

        /// <returns>解析得到的Html代码</returns> 

        public static string DecodeNoFollow(string ubb) 

        { 

            if (string.IsNullOrEmpty(ubb)) 

                return null; 

            string result = ubb; 

            result = HttpUtility.HtmlEncode(result);

result = DecodeStyle(result); 

            result = DecodeFont(result); 

            result = DecodeColor(result); 

            result = DecodeImage(result); 

            result = DecodeLinksNoFollow(result); 

            result = DecodeQuote(result); 

            result = DecodeAlign(result); 

            result = DecodeList(result); 

            result = DecodeHeading(result); 

            result = DecodeBlank(result);

return result; 

        }

private static string DecodeHeading(string ubb) 

        { 

            string result = ubb; 

            result = Regex.Replace(result, @"\[h(\d)\](.*?)\[/h\1\]", "<h$1>$2</h$1>", options); 

            return result; 

        }

private static string DecodeList(string ubb) 

        { 

            string sListFormat = "<ol style=\"list-style:{0};\">$1</ol>"; 

            string result = ubb; 

            // Lists 

            result = Regex.Replace(result, @"\[\*\]([^\[]*)", "<li>$1</li>", options); 

            result = Regex.Replace(result, @"\[list\]\s*(.*?)\[/list\]", "<ul>$1</ul>", options); 

            result = Regex.Replace(result, @"\[list=1\]\s*(.*?)\[/list\]", string.Format(sListFormat, "decimal"), options); 

            result = Regex.Replace(result, @"\[list=i\]\s*(.*?)\[/list\]", string.Format(sListFormat, "lower-roman"), options); 

            result = Regex.Replace(result, @"\[list=I\]\s*(.*?)\[/list\]", string.Format(sListFormat, "upper-roman"), options); 

            result = Regex.Replace(result, @"\[list=a\]\s*(.*?)\[/list\]", string.Format(sListFormat, "lower-alpha"), options); 

            result = Regex.Replace(result, @"\[list=A\]\s*(.*?)\[/list\]", string.Format(sListFormat, "upper-alpha"), options);

return result; 

        }

private static string DecodeBlank(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"(?<= ) | (?= )", " ", options); 

            result = Regex.Replace(result, @"\r\n", "<br />"); 

            string[] blockTags = {"h[1-6]", "li", "list", "div", "p", "ul"}; 

            //clear br before block tags(start or end) 

            foreach (string tag in blockTags) 

            { 

                Regex r = new Regex("<br />(<" + tag + ")",options); 

                result = r.Replace(result, "$1"); 

                r = new Regex("<br />(</" + tag + ")",options); 

                result = r.Replace(result, "$1"); 

            } 

            return result; 

        }

private static string DecodeAlign(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[left\](.*?)\[/left\]", "<div style=\"text-align:left\">$1</div>", options); 

            result = Regex.Replace(result, @"\[right\](.*?)\[/right\]", "<div style=\"text-align:right\">$1</div>", options); 

            result = Regex.Replace(result, @"\[center\](.*?)\[/center\]", "<div style=\"text-align:center\">$1</div>", options);

return result; 

        }

private static string DecodeQuote(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[quote\]", "<blockquote><div>", options); 

            result = Regex.Replace(result, @"\[/quote\]", "</div></blockquote>", options); 

            return result; 

        }

private static string DecodeFont(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[size=([-\w]+)\](.*?)\[/size\]", "<span style=\"font-size:$1\">$2</span>", options); 

            result = Regex.Replace(result, @"\[font=(.*?)\](.*?)\[/font\]", "<span style=\"font-family:$1\">$2</span>", options); 

            return result; 

        }

private static string DecodeLinks(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[url\]www\.(.*?)\[/url\]", "<a href=\"http://www.$1\">$1</a>", options); 

            result = Regex.Replace(result, @"\[url\](.*?)\[/url\]", "<a href=\"$1\">$1</a>", options); 

            result = Regex.Replace(result, @"\[url=(.*?)\](.*?)\[/url\]", "<a href=\"$1\" title=\"$2\">$2</a>", options); 

            result = Regex.Replace(result, @"\[email\](.*?)\[/email\]", "<a href=\"mailto:$1\">$1</a>", options); 

            return result; 

        }

private static string DecodeLinksNoFollow(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[url\]www\.(.*?)\[/url\]", "<a rel=\"nofollow\" href=\"http://www.$1\">$1</a>", options); 

            result = Regex.Replace(result, @"\[url\](.*?)\[/url\]", "<a rel=\"nofollow\" href=\"$1\">$1</a>", options); 

            result = Regex.Replace(result, @"\[url=(.*?)\](.*?)\[/url\]", "<a rel=\"nofollow\" href=\"$1\" title=\"$2\">$2</a>", options); 

            result = Regex.Replace(result, @"\[email\](.*?)\[/email\]", "<a href=\"mailto:$1\">$1</a>", options); 

            return result; 

        }

private static string DecodeImage(string ubb) 

        { 

            string result = ubb;

result = Regex.Replace(result, @"\[hr\]", "<hr />", options); 

            result = Regex.Replace(result, @"\[img\](.+?)\[/img\]", "<img src=\"$1\" alt=\"\" />", options); 

            result = Regex.Replace(result, @"\[img=(\d+)x(\d+)\](.+?)\[/img\]", "<img src=\"$3\" style=\"width:$1px;height:$2px\" alt=\"\" />", options);

return result; 

        }

private static string DecodeColor(string ubb) 

        { 

            string result = ubb; 

            result = Regex.Replace(result, @"\[color=(#?\w+?)\](.+?)\[/color\]", "<span style=\"color:$1\">$2</span>",options);

return result; 

        }

private static string DecodeStyle(string ubb) 

        { 

            string result=ubb; 

            //we don't need this for perfomance and other consideration: 

            //(<table[^>]*>(?><table[^>]*>(?<Depth>)|</table>(?<-Depth>)|.)+(?(Depth)(?!))</table>) 

            result = Regex.Replace(result, @"\[[b]\](.*?)\[/[b]\]", "<strong>$1</strong>", options); 

            result = Regex.Replace(result, @"\[[u]\](.*?)\[/[u]\]", "<span style=\"text-decoration:underline\">$1</span>", options); 

            result = Regex.Replace(result, @"\[[i]\](.*?)\[/[i]\]", "<i>$1</i>", options);

return result; 

        } 

    } 

}

时间: 2024-10-31 01:44:42

C#正则实现Ubb解析类的代码的相关文章

C#正则实现Ubb解析类的代码_正则表达式

解析得到的代码能通过XHTML 1.0 STRICT验证; 包含了标题,链接,字体,对齐,图片,引用,列表等方面的功能.  Ubb.ReadMe.htm UBB代码说明 标题 [h1]标题一[/h1] 标题一 [h2]标题二[/h2] 标题二 [h1]标题三[/h1] 标题三 [h4]标题四[/h4] 标题四 [h5]标题五[/h5] 标题五 [h6]标题六[/h6] 标题六 链接 [url]www.unibetter.com[/url] unibetter.com [url]http://ww

php UBB 解析实现代码_php技巧

复制代码 代码如下: /** +---------------------------------------------------------- * UBB 解析 +---------------------------------------------------------- * @return string +---------------------------------------------------------- */ function ubb($Text) { $Tex

用Javascript正则实现url链接的解析类

用 Javascript 解析链接(URL)是一个常见的需求,本文介绍了一个非常健全的用 Javascript 写的链接(URL)解析类,他可以准确获取一个完整的 URL 中每个部分的内容,包括协议.URL中包含的用户名和密码.主机名.端口.路径名.参数.锚点(Fragment Anchor)等信息.  <body> <script type="text/javascript"> if (typeof Poly9 == 'undefined') { var Po

PHP模板解析类实例_php技巧

本文实例讲述了PHP模板解析类.分享给大家供大家参考.具体如下: <?php class template { private $vars = array(); private $conf = ''; private $tpl_name = 'index'; //如果模板不存在 会查找当前 controller默认index模板 private $tpl_suffix = '.html';//如果CONFIG没配置默认后缀 则显示 private $tpl_compile_suffix= '.t

简单实用的Xml解析类

今天有点郁闷,不想干活.整理代码的时候,看到了这个好久之前写的代码,于是想整理 出来供大家拍砖.XML的解析对于.Net平台那真是太简单不过了,感谢微软.但对于C++语言 的XML解析就没那么容易了.有一个开源的XML4C是IBM的,功能强大,但代码大的有几M,而且 对于GB2312的支持有问题,据说能解决,但可能是我天生愚钝,当初我花了2周时间也没搞定 ,最后放弃,自己写了一个.咦?还能跑起来,也能跨平台:). 写这个XML解析类,以功能 最简单,最实用,最常用的功能为原则,因为只能解析,查找

android客户端从服务器端获取json数据并解析的实现代码_Android

首先客户端从服务器端获取json数据 1.利用HttpUrlConnection 复制代码 代码如下: /**      * 从指定的URL中获取数组      * @param urlPath      * @return      * @throws Exception      */     public static String readParse(String urlPath) throws Exception {                  ByteArrayOutputSt

Android JSON解析类 - JsonReader

 在Android 3.0 honeycomb开始提供了新的JSON解析类 - android.util.JsonReader,下面Android123以下面的JSON为例子[    {      "id": 912345678901,      "text": "How do I read JSON on Android?",      "geo": null,      "user": {       

Android常用正则表达式验证工具类(实例代码)

东西不多,但一般项目够用了. public class RegularUtil { //身份证 public static final String REGEX_ID_CARD = "^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}([0-9]|X)$"; //验证邮箱 public static final String REGEX_EMAIL = "^([a-z0-9A-Z]+[-|\\

安卓小白 求大神解析json 求代码

问题描述 安卓小白 求大神解析json 求代码 { "date": "20140617", "stories": [ { "title": "千万不要干傻事", "ga_prefix": "09", "images": [ "http://www.baidu.com/img/baidu_sylogo1.gif" ], "