一个asp替换函数img里面多余的代码

时间:2022-10-02 12:09:20
  1. <%  
  2. Response.Write(Server.HTMLEncode(FixImg("<img onclick=""if(this.width>screen.width-461) window.open('qq/20082181405371.jpg');"" alt="""" border=""0"" src=""qq/20082181405371.jpg"" />")))  
  3. %>  
  4. <%  
  5. '功能:将IMG代码格式化为<img src="XXX" />格式.  
  6. Function FixImg(sString)  
  7.  
  8.     Dim sReallyDo, regEx, iReallyDo  
  9.     Dim oMatches, cMatch  
  10.     Dim tStartTime, tEndTime  
  11.     If IsNull(sString) Then  
  12.         FixImg = ""  
  13.         Exit Function  
  14.     End If  
  15.     sReallyDo = sString  
  16.     On Error Resume Next  
  17.     sReallyDo = Replace(sReallyDo, vbCr, " ")  
  18.     sReallyDo = Replace(sReallyDo, vbLf, " ")  
  19.     sReallyDo = Replace(sReallyDo, vbTab, " ")  
  20.     sReallyDo = Replace(sReallyDo, "<img ", vbCrLf & "<img ", 1, -1, 1)  
  21.     sReallyDo = Replace(sReallyDo, "/>"" />", 1, -1, 1)  
  22.     sReallyDo = ReplaceAll(sReallyDo, "= ""=", True)  
  23.     sReallyDo = ReplaceAll(sReallyDo, "> "">", True)  
  24.     sReallyDo = Replace(sReallyDo, "><"">" & vbCrLf & "<")  
  25.     sReallyDo = Trim(sReallyDo)  
  26.     On Error GoTo 0  
  27.     Set regEx = New RegExp  
  28.     regEx.IgnoreCase = True  
  29.     regEx.Global = True  
  30.     '//去除onclick,onload等脚本  
  31.     regEx.Pattern = "\s[on].+?=([\""|\'])(.*?)\1"  
  32.     sReallyDo = regEx.Replace(sReallyDo, "")  
  33.     '//将SRC不带引号的图片地址加上引号  
  34.     regEx.Pattern = "<img.*?\ssrc=([^\""\'\s][^\""\'\s>]*).*?>"  
  35.     sReallyDo = regEx.Replace(sReallyDo, "<img src=""$1"" />")  
  36.     '//正则匹配图片SRC地址  
  37.     regEx.Pattern = "<img.*?\ssrc=([\""\'])([^\""\']+?)\1.*?>"  
  38.     sReallyDo = regEx.Replace(sReallyDo, "<img src=""$2"" />")  
  39.     FixImg = sReallyDo  
  40. End Function  
  41. %>  
  42. <%  
  43. '功能:返回字符串,其中指定数目的某子字符串 全部 被替换为另一个子字符串。  
  44. '来源:http://jorkin.reallydo.com/article.asp?id=406  
  45. '需要Bint函数:http://jorkin.reallydo.com/article.asp?id=395  
  46.  
  47. Function ReplaceAll(sExpression, sFind, sReplaceWith, bAll)  
  48.     If IsNull(sExpression) Then ReplaceAll = "" : Exit Function  
  49.     If (StrComp(bAll, "True", 1) = 0) Or (CBool(Bint(bAll)) = True) Then  
  50.         Do While InStr( 1, sExpression, sFind, 1) > 0  
  51.             sExpression = Replace(sExpression, sFind, sReplaceWith, 1, -1, 1)  
  52.             If InStr( 1, sReplaceWith , sFind , 1) >0 Then Exit Do  
  53.         Loop  
  54.     Else  
  55.         Do While InStr(sExpression, sFind) > 0  
  56.             sExpression = Replace(sExpression, sFind, sReplaceWith)  
  57.             If InStr(sReplaceWith, sFind ) > 0 Then Exit Do  
  58.         Loop  
  59.     End If  
  60.     ReplaceAll = sExpression  
  61. End Function  
  62. %>  
  63. <%  
  64. '功能:只取数字  
  65. '来源:http://jorkin.reallydo.com/article.asp?id=395  
  66.  
  67. Function Bint(Str)  
  68.     Str = Trim(Str)  
  69.     If Str = "" Or IsNull(Str) Or Not IsNumeric(Str) Then Str = "0"  
  70.     Bint = Round(Str, 0)  
  71. End Function  
  72. %>