首页 > 编程 > Regex > 正文

ubbcode简单实用

2020-03-16 21:24:25
字体:
来源:转载
供稿:网友
ubbcode简单实用
  1. <% 
  2. function ChkBadWords(fString) 
  3.     if not(isnull(BadWords) or isnull(fString)) then 
  4.     bwords = split(BadWords, "|"
  5.     for i = 0 to ubound(bwords) 
  6.         fString = Replace(fString, bwords(i), string(len(bwords(i)),"*"))  
  7.     next 
  8.     ChkBadWords = fString 
  9.     end if 
  10. end function 
  11. function HTMLEncode(fString) 
  12. if not isnull(fString) then 
  13.     'fString = Replace(fString, CHR(38), "&"
  14.     'fString = replace(fString, ">"">"
  15.     'fString = replace(fString, "<""<"
  16.     'fString = Replace(fString, CHR(39), "'") 
  17.     'fString = Replace(fString, CHR(32), " "
  18.     'fString = Replace(fString, CHR(34), """) 
  19.     'fString = Replace(fString, CHR(13), ""
  20.     fString = Replace(fString, CHR(10), "<br/>"
  21.     HTMLEncode = fString 
  22. end if 
  23. end function 
  24. function HTMLcode(fString) 
  25. if not isnull(fString) then 
  26.     fString = Replace(fString, CHR(13), ""
  27.     fString = Replace(fString, CHR(10), "<br/>"
  28.     HTMLcode = fString 
  29. end if 
  30. end function 
  31. function HTMLDecode(fString) 
  32. if not isnull(fString) then 
  33.     'fString = Replace(fString, CHR(38), "&"
  34.     'fString = replace(fString, ">"">"
  35.     'fString = replace(fString, "<""<"
  36.     'fString = Replace(fString, CHR(32), " "
  37.     'fString = Replace(fString,"",CHR(13)) 
  38.     fString = Replace(fString,"<br/>",CHR(10)) 
  39.     HTMLDecode = fString 
  40. end if 
  41. end function 
  42. function UBBCode(strContent) 
  43.     if strAllowHTML <> 1 then 
  44.         strContent = HTMLEncode(strContent) 
  45.     else 
  46.  strContent = HTMLcode(strContent) 
  47.     end if 
  48.     dim re 
  49.     Set re=new RegExp 
  50.     re.IgnoreCase =true 
  51.     re.Global=True 
  52.     re.Pattern="/[IMG/](.[^/[]*)/[//IMG/]" 
  53.     strContent=re.Replace(strContent,"<img src=""$1"" border=""0""></img>"
  54.     re.Pattern="/[IMG=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//IMG/]" 
  55.     strContent=re.Replace(strContent,"<a href=""$3"" title=点击看全图 target=_blank><img src=""$3"" width=""$1"" height=""$2"" border=""0""></img></a>"
  56.  
  57.         '图文混排 
  58.     re.Pattern="/[PIC/](.[^/[]*)/[//PIC/]" 
  59.     strContent=re.Replace(strContent,"<img src=""$1"" border=""0"" align=""left""></img>"
  60.     re.Pattern="/[PIC=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//PIC/]" 
  61.     strContent=re.Replace(strContent,"<a href=""$3"" title=点击看全图 target=_blank><img src=""$3"" width=""$1"" height=""$2"" border=""0"" align=""left""></img></a>"
  62.      
  63.  
  64.     re.Pattern="/[FLASH=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//FLASH/]" 
  65.     strContent= re.Replace(strContent,"<EMBED SRC=""$3"" width=""$1"" height=""$2""></EMBED>"
  66.     re.Pattern="/[FLASH/](.[^/[]*)/[//FLASH/]" 
  67.     strContent= re.Replace(strContent,"<EMBED SRC=""$1""></EMBED>"
  68.     re.Pattern="(/[URL/])(http:////.[^/[]*)(/[//URL/])" 
  69.     strContent= re.Replace(strContent,"<A HREF=""$2"" TARGET=""_blank"">$2</A>"
  70.     re.Pattern="(/[URL/])(.[^/[]*)(/[//URL/])" 
  71.     strContent= re.Replace(strContent,"<A HREF=""http://$2"" TARGET=""_blank"">$2</A>"
  72.     re.Pattern="(/[EMAIL/])(mailto:////.[^/[]*)(/[//EMAIL/])" 
  73.     strContent= re.Replace(strContent,"<A HREF=""$2"" TARGET=""_blank"">$2</A>"
  74.     re.Pattern="(/[EMAIL/])(.[^/[]*)(/[//EMAIL/])" 
  75.     strContent= re.Replace(strContent,"<A HREF=""MAILTO:$2"" TARGET=""_blank"">$2</A>"
  76.     re.Pattern="(/[URL=(http:////.[^/[]*)/])(.[^/[]*)(/[//URL/])" 
  77.     strContent= re.Replace(strContent,"<A HREF=""$2"" TARGET=""_blank"">$3</A>"
  78.     re.Pattern="(/[URL=(.[^/[]*)/])(.[^/[]*)(/[//URL/])" 
  79.     strContent= re.Replace(strContent,"<A HREF=""http://$2"" TARGET=""_blank"">$3</A>"
  80.  re.Pattern = "^(http://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)" 
  81.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  82.  re.Pattern = "(http://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)$" 
  83.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  84.  re.Pattern = "[^>=""](http://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)" 
  85.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  86.  re.Pattern = "^(ftp://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)" 
  87.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  88.  re.Pattern = "(ftp://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)$" 
  89.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  90.  re.Pattern = "[^>=""](ftp://[A-Za-z0-9/.//=/?%/-&_~`@':+!]+)" 
  91.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  92.  re.Pattern = "^(rtsp://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)" 
  93.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  94.  re.Pattern = "(rtsp://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)$" 
  95.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  96.  re.Pattern = "[^>=""](rtsp://[A-Za-z0-9/.//=/?%/-&_~`@':+!]+)" 
  97.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  98.  re.Pattern = "^(mms://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)" 
  99.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  100.  re.Pattern = "(mms://[A-Za-z0-9/./=/?%/-&_~`@':+!]+)$" 
  101.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  102.  re.Pattern = "[^>=""](mms://[A-Za-z0-9/.//=/?%/-&_~`@':+!]+)" 
  103.  strContent = re.Replace(strContent,"<img align=absmiddle src=http://www.ceocio.net/images/url.gif><a target=_blank href=$1>$1</a>"
  104.   
  105.     re.Pattern="/[DIR=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//DIR]" 
  106.  strContent=re.Replace(strContent,"<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>"
  107.  re.Pattern="/[QT=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//QT]" 
  108.  strContent=re.Replace(strContent,"<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/>"
  109.  re.Pattern="/[MP=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//MP]" 
  110.  strContent=re.Replace(strContent,"<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>"
  111.  re.Pattern="/[RM=*([0-9]*),*([0-9]*)/](.[^/[]*)/[//RM]" 
  112.  strContent=re.Replace(strContent,"<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>"
  113.   
  114.  
  115.     re.Pattern="(/[color=(.[^/[]*)/])(.[^/[]*)(/[//color/])" 
  116.     strContent=re.Replace(strContent,"<font color=""$2"">$3</font>"
  117.     re.Pattern="(/[face=(.[^/[]*)/])(.[^/[]*)(/[//face/])" 
  118.     strContent=re.Replace(strContent,"<font face=""$2"">$3</font>"
  119.     re.Pattern="(/[align=(.[^/[]*)/])(.*)(/[//align/])" 
  120.     strContent=re.Replace(strContent,"<div align=""$2"">$3</div>"
  121.     re.Pattern="(/[QUOTE/])(.*)(/[//QUOTE/])" 
  122.     strContent=re.Replace(strContent,"<table cellpadding=""0"" cellspacing=""0"" border=""0"" WIDTH=""94%"" bgcolor=""#D7F0FF"" align=""center""><tr><td><table width=""100%"" cellpadding=""5"" cellspacing=""1"" border=""0""><TR><TD BGCOLOR='"&abgcolor&"'>$2</table></table><br>"
  123.     re.Pattern="(/[fly/])(.*)(/[//fly/])" 
  124.     strContent=re.Replace(strContent,"<marquee width=""90%"" behavior=""alternate"" scrollamount=""3"">$2</marquee>"
  125.     re.Pattern="(/[move/])(.*)(/[//move/])" 
  126.     strContent=re.Replace(strContent,"<MARQUEE scrollamount=""3"">$2</marquee>")  
  127.     re.Pattern="/[GLOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)/](.[^/[]*)/[//GLOW]" 
  128.     strContent=re.Replace(strContent,"<table width=""$1"" style=""filter:glow(color=$2, strength=$3)"">$4</table>"
  129.     re.Pattern="/[SHADOW=*([0-9]*),*(#*[a-z0-9]*),*([0-9]*)/](.[^/[]*)/[//SHADOW]" 
  130.  strContent=re.Replace(strContent,"<table width=$1 style=""filter:shadow(color=$2, strength=$3)"">$4</table>"
  131.     re.Pattern="(/[i/])(.[^/[]*)(/[//i/])" 
  132.     strContent=re.Replace(strContent,"<i>$2</i>"
  133.     re.Pattern="(/[u/])(.[^/[]*)(/[//u/])" 
  134.     strContent=re.Replace(strContent,"<u>$2</u>"
  135.     re.Pattern="(/[b/])(.[^/[]*)(/[//b/])" 
  136.     strContent=re.Replace(strContent,"<b>$2</b>"
  137.     re.Pattern="(/[fly/])(.[^/[]*)(/[//fly/])" 
  138.     strContent=re.Replace(strContent,"<marquee>$2</marquee>"
  139.     re.Pattern="(/[size=1/])(.[^/[]*)(/[//size/])" 
  140.     strContent=re.Replace(strContent,"<font size=""1"">$2</font>"
  141.     re.Pattern="(/[size=2/])(.[^/[]*)(/[//size/])" 
  142.     strContent=re.Replace(strContent,"<font size=""2"">$2</font>"
  143.     re.Pattern="(/[size=3/])(.[^/[]*)(/[//size/])" 
  144.     strContent=re.Replace(strContent,"<font size=""3"">$2</font>"
  145.     re.Pattern="(/[size=4/])(.[^/[]*)(/[//size/])" 
  146.     strContent=re.Replace(strContent,"<font size=""4"">$2</font>"
  147.     re.Pattern="(/[center/])(.[^/[]*)(/[//center/])" 
  148.     strContent=re.Replace(strContent,"<center>$2</center>"
  149.     '以下扩展 
  150.     re.Pattern="(/[li/])(.[^/[]*)(/[//li/])" 
  151.     strContent=re.Replace(strContent,"<li>$2</li>"
  152.     '字体背景 
  153.     re.Pattern="(/[fontbg=(.[^/[]*)/])(.[^/[]*)(/[//fontbg/])" 
  154.     strContent=re.Replace(strContent,"<span style=background-color:""$2"">$3</span>"
  155.     '删除线 
  156.     re.Pattern="(/[strike/])(.[^/[]*)(/[//strike/])" 
  157.     strContent=re.Replace(strContent,"<strike>$2</strike>"
  158.     re.Pattern="(/[HTML/])(.[^/[]*)(/[//HTML/])" 
  159.  strContent=re.Replace(strContent,"<table width='100%' border='0' cellspacing='0' cellpadding='6' bgcolor='"&abgcolor&"'><td><b>以下内容为程序代码:</b><br>$2</td></table>"
  160.  re.Pattern="(/[code/])(.[^/[]*)(/[//code/])" 
  161.  strContent=re.Replace(strContent,"<table width='100%' border='0' cellspacing='0' cellpadding='6' bgcolor='"&abgcolor&"'><td><b>以下内容为程序代码:</b><br>$2</td></table>"
  162.   
  163.  
  164.     strContent=ChkBadWords(strContent) 
  165.     set re=Nothing 
  166.     UBBCode=strContent 
  167. end function 
  168. %> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表