VBScript code
'==================================================
'*函數名 : GetHrefFromContent
'*參數說明 : html asp截取文本連接地址。
'*功能簡介 : 獲取代碼中的鏈接地址
'==================================================
function GetHrefFromContent(html)
Dim Re, match, matchs,strContent,aryNum,aryContent,strUrl
strContent = ""
set Re = new RegExp
re.IgnoreCase =True
re.Global = True
re.Pattern = "<a.*?href=(?:""(.*?)""|(.*?))(?:(?: .*?>)|>)(.*?)</a>"
Set matchs = re.Execute(html)
for each match in matchs
'match.SubMatches(0) 基本 0 可改成數組里的其它成員
strContent = strContent + (match.SubMatches(0)) & "|$|"
next
set matchs = nothing
aryContent = split(strContent,"|$|")
for aryNum = LBound(aryContent) to UBound(aryContent)
strUrl = aryContent(aryNum) '連接地址
next
end function
asp網站建設的截取連接地址功能,你學會了嗎?
Copyright © 2010-2021 北京瑞恒天龍科技有限公司 All Rights Reserved | 北京網站建設知名服務商 | 北京網站制作 | 京ICP備11004170號-1 京公網安備110107000463號
地址:北京市海淀區永定路長銀大廈B座 非工作時間:15810379666 服務熱線:400-809-6709 版權所有 盜版必究!