Function includeconvert(oRegExp, strFilename, strBlock) Dim incStart, incEnd, match, oMatches, str, code '用提取ASP代碼的相同方式提取出include 部分的檔案名稱,其餘部分原樣輸出 code = "" incEnd = 1 incStart = InStr(incEnd,strBlock,"<!--#include ") + 13 '要找個目標字串<!--#include 正好是13個字元,所以要+13 Do While incStart>incEnd+12 '兩個引用間距最小就是連續的--><--#,incStart是從<!--#include起數13個字元,所以要比前一個incEnd要至少多 13-1 得到的>incEnd+12的條件 str = Mid(strBlock,incEnd,incStart-incEnd-13) str = Replace(str, """", """""") '把單個雙引號換成兩個雙引號 str = Replace(str, VbCr, "") str = Replace(str, VbLf, "") str = Replace(str, VbCrLf, "") code = code & VbCrLf & "Response.Write """ & str & """" incEnd=InStr(incStart,strBlock,"-->")+3 oRegExp.pattern="(w+)=""([^""]+)""" '匹配 file="filename.ext" 或 virtual="virtualname.ext",捕捉類型及檔案名稱兩個子串 Set oMatches = oRegExp.Execute(Mid(strBlock,incStart,incEnd-incStart-3)) Set match = oMatches(0) '確定只有一組捕捉時,要得到這一組匹配的子串,可以這樣做,省去用 For Each match In oMatches …… Next code = code & include(Mid(strFilename, 1, InStrRev(strFilename, "/")) & match.SubMatches(1)) 'Mid(filename, 1, InStrRev(filename, "/")) 是在被引用的子檔案名稱有路徑時,把路徑提取出來,加在子檔案中傳統引用的檔案名稱前面,以找到正確的開啟檔案路徑,因為動態引用時的檔案路徑是相對主檔案而言的。要第二個匹配子串用SubMatches(1) incStart = InStr(incEnd,strBlock,"<!--#include ")+13 Loop str = Mid(strBlock,incEnd) str = Replace(str, """", """""") '把單個雙引號換成兩個雙引號 str = Replace(str, VbCr, "") str = Replace(str, VbLf, "") str = Replace(str, VbCrLf, "") code = code & VbCrLf & "Response.Write """ & str & """" includeconvert = code End Function Function include(filename) Dim re, content, fso, f, aspStart, aspEnd, code Set fso=CreateObject("scripting.FileSystemObject") Set f=fso.OpenTextFile(Server.MapPath(filename)) content=f.ReadAll f.close Set f=nothing Set fso=nothing code = "" aspEnd=1 aspStart=InStr(aspEnd,content,"<%")+2 Set re=new RegExp Do While aspStart>aspEnd+1 '傳統引用<!--#inclde 肯定是在ASP程式碼片段以外的,所以先轉。 code = code & includeconvert (re, filename, Mid(content,aspEnd,aspStart-aspEnd-2)) aspEnd=InStr(aspStart,content,"%>")+2 re.pattern="^s*=" '這段正則替換原來是把 <% = str % > 換回成標準的 <%Response.Write str % > code = code & VbCrLf & re.replace(Mid(content,aspStart,aspEnd-aspStart-2),"Response.Write ") 'ASP塊前面再加斷行符號換行,以避免串連塊之間多個 Response.Write在同一行的錯誤 aspStart=InStr(aspEnd,content,"<%")+2 Loop code = code & includeconvert (re, filename, Mid(content,aspEnd)) Set re=nothing include = code End Function |