首页 > 编程 > Regex > 正文

自动识别HTML的标记 替换连接

2020-03-16 21:23:34
字体:
来源:转载
供稿:网友

代码如下:

<%

FunctionSenFe_UbbCode(sContent)

DimTempReg

SetTempReg=NewRegExp

WithTempReg

.IgnoreCase=True

.Global=True

'自动识别网址

IfInStr(Lcase(sContent),"http://")>0Then

.Pattern="(^|[^<=""])(http:(////|////)(([/w/////+/-~`@:%])+/.)+([/w/////./=/?/+/-~`@/':!%#]|(&)|&)+)"

sContent=.Replace(sContent,"$1$2")

EndIf

'自动识别www等开头的网址

IfInStr(Lcase(sContent),"www.")>0orInStr(Lcase(sContent),"bbs.")>0Then

.Pattern="(^|[^/////w/=])((www|bbs)/.(/w)+/.([/w/////./=/?/+/-~`@/'!%#]|(&))+)"

sContent=.Replace(sContent,"$1$2")

EndIf

EndWith

SetTempReg=Nothing

SenFe_UbbCode=sContent

EndFunction

%>



 

  1. <script language="vbscript"> 
  2. Function SenFe_UbbCode(sContent) 
  3.  Dim TempReg 
  4.  Set TempReg = New RegExp 
  5.  With TempReg 
  6.   .IgnoreCase = True 
  7.   .Global = True 
  8.   '自动识别网址 
  9.   If InStr(Lcase(sContent),"http://")>0 Then 
  10.    .Pattern = "(^|[^<=""])(http:(////|////)(([/w/////+/-~`@:%])+/.)+([/w/////./=/?/+/-~`@/':!%#]|(&)|&)+)" 
  11.    sContent = .Replace(sContent,"$1<a href=""$2"" target=""_blank"">$2</a>") 
  12.   End If 
  13.   '自动识别www等开头的网址 
  14.   If InStr(Lcase(sContent),"www.")>0 or InStr(Lcase(sContent),"bbs.")>0 Then 
  15.    .Pattern = "(^|[^/////w/=])((www|bbs)/.(/w)+/.([/w/////./=/?/+/-~`@/'!%#]|(&))+)" 
  16.    sContent = .Replace(sContent,"$1<a href=""http://$2"" target=""_blank"">$2</a>") 
  17.   End If 
  18.  End With 
  19.  Set TempReg = Nothing 
  20.  SenFe_UbbCode = sContent 
  21. End Function 
  22. </script> 
  23. <textarea name="scode" cols="50" rows="20"></textarea> 
  24. <input type="button" value="替换" onclick="vbscript:document.getElementById('scode').value=SenFe_UbbCode(document.getElementById('scode').value)" /> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表