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://www.unibetter.com[/url]
http://www.unibetter.com
[url=http://www.unibetter.com]unibetter大学生论坛[/url]
unibetter大学生论坛
[email][email protected][/email]
[email protected]

字体大小

[size=xx-small]文字大小[/size]
文字大小
[size=x-small]文字大小[/size]
文字大小
[size=small]文字大小[/size]
文字大小
[size=medium]文字大小[/size]
文字大小
[size=large]文字大小[/size]
文字大小
[size=x-large]文字大小[/size]
文字大小
[size=xx-large]文字大小[/size]
文字大小

字体格式

[font=黑体]文字字体[/font]
文字字体
[color=red]文字颜色[/color]
文字颜色
[color=#0000ff]文字颜色[/color]
文字颜色
[b]粗体字[/b]
粗体字
[i]斜体字[/i]
斜体字
[u]下划线[/u]
下划线

对齐

[left]左对齐[/left]
左对齐
[right]右对齐[/right]
右对齐
[center]右对齐[/center]
居中

图片

[hr]

[img]http://www.w3.org/Icons/valid-xhtml10[/img]
[img=176x62]http://www.w3.org/Icons/valid-xhtml10[/img]

引用

[quote]毛主席他老人家说:一切反动派都是纸老虎![/quote]
毛主席他老人家说:一切反动派都是纸老虎!

列表

无序列表

[list] [*]苹果 [*]香蕉 [*]桃 [/list]

  • 苹果
  • 香蕉

有序列表

[list=1] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]

  1. 打开冰箱门
  2. 把大象赶进冰箱
  3. 关上冰箱门

[list=i] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]

  1. 打开冰箱门
  2. 把大象赶进冰箱
  3. 关上冰箱门

[list=I] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]

  1. 打开冰箱门
  2. 把大象赶进冰箱
  3. 关上冰箱门

[list=a] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]

  1. 打开冰箱门
  2. 把大象赶进冰箱
  3. 关上冰箱门

[list=A] [*]打开冰箱门 [*]把大象赶进冰箱 [*]关上冰箱门 [/list]

  1. 打开冰箱门
  2. 把大象赶进冰箱
  3. 关上冰箱门

[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; 

        ///  
        /// 解析Ubb代码为Html代码 
        /// 
 
        /// Ubb代码 
        /// 解析得到的Html代码 
        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; 
        } 

        ///  
        /// 解析Ubb代码为Html代码,所有的链接为rel="nofollow" 
        /// 
 
        /// Ubb代码 
        /// 解析得到的Html代码 
        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\]", "$2", options); 
            return result; 
        } 

        private static string DecodeList(string ubb) 
        { 
            string sListFormat = "$1"; 
            string result = ubb; 
            // Lists 
            result = Regex.Replace(result, @"\[\*\]([^\[]*)", "
  • $1
  • ", options); 
                result = Regex.Replace(result, @"\[list\]\s*(.*?)\[/list\]", "
      $1
    ", 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", ""); 
                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("(<" + tag + ")",options); 
                    result = r.Replace(result, "$1"); 
                    r = new Regex("(                result = r.Replace(result, "$1"); 
                } 
                return result; 
            } 

            private static string DecodeAlign(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[left\](.*?)\[/left\]", "$1
    ", options); 
                result = Regex.Replace(result, @"\[right\](.*?)\[/right\]", "$1
    ", options); 
                result = Regex.Replace(result, @"\[center\](.*?)\[/center\]", "$1
    ", options); 

                return result; 
            } 

            private static string DecodeQuote(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[quote\]", "
    ", options); 
                result = Regex.Replace(result, @"\[/quote\]", "
    ", options); 
                return result; 
            } 

            private static string DecodeFont(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[size=([-\w]+)\](.*?)\[/size\]", "$2", options); 
                result = Regex.Replace(result, @"\[font=(.*?)\](.*?)\[/font\]", "$2", options); 
                return result; 
            } 

            private static string DecodeLinks(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[url\]www\.(.*?)\[/url\]", "$1", options); 
                result = Regex.Replace(result, @"\[url\](.*?)\[/url\]", "$1", options); 
                result = Regex.Replace(result, @"\[url=(.*?)\](.*?)\[/url\]", "$2", options); 
                result = Regex.Replace(result, @"\[email\](.*?)\[/email\]", "$1", options); 
                return result; 
            } 

            private static string DecodeLinksNoFollow(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[url\]www\.(.*?)\[/url\]", "$1", options); 
                result = Regex.Replace(result, @"\[url\](.*?)\[/url\]", "$1", options); 
                result = Regex.Replace(result, @"\[url=(.*?)\](.*?)\[/url\]", "$2", options); 
                result = Regex.Replace(result, @"\[email\](.*?)\[/email\]", "$1", options); 
                return result; 
            } 

            private static string DecodeImage(string ubb) 
            { 
                string result = ubb; 

                result = Regex.Replace(result, @"\[hr\]", "", options); 
                result = Regex.Replace(result, @"\[img\](.+?)\[/img\]", "", options); 
                result = Regex.Replace(result, @"\[img=(\d+)x(\d+)\](.+?)\[/img\]", "", options); 

                return result; 
            } 

            private static string DecodeColor(string ubb) 
            { 
                string result = ubb; 
                result = Regex.Replace(result, @"\[color=(#?\w+?)\](.+?)\[/color\]", "$2",options); 

                return result; 
            } 

            private static string DecodeStyle(string ubb) 
            { 
                string result=ubb; 
                //we don't need this for perfomance and other consideration: 
                //(]*>(?>]*>(?)|(?<-Depth>)|.)+(?(Depth)(?!))) 
                result = Regex.Replace(result, @"\[[b]\](.*?)\[/[b]\]", "$1", options); 
                result = Regex.Replace(result, @"\[[u]\](.*?)\[/[u]\]", "$1", options); 
                result = Regex.Replace(result, @"\[[i]\](.*?)\[/[i]\]", "$1", options); 

                return result; 
            } 
        } 

    你可能感兴趣的:(C#正则实现Ubb解析类的代码)