程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> ASP取出HTML裡面的圖片地址的函數

ASP取出HTML裡面的圖片地址的函數

編輯:ASP技巧

以下是取出Html裡面的圖片地址的函數:

主要原理就是用正則判斷 <img> 的<src>屬性。這在采集程序中將非常有用。

函數如下:

以下是引用片段:
Function ShowPic(str)
 Set objRegExp = New Regexp'設置配置對象 
 objRegExp.IgnoreCase = True'忽略大小寫 
 objRegExp.Global = True'設置為全文搜索 
 objRegExp.Pattern = "<img.+?>"
 '為了確保能准確地取出圖片地址所以分為兩層配置:首先找到裡面的<img>標簽,然後再取出裡面的圖片地址後面的getimgs函數就是實現後一個功能的。 
 strs=trim(str) 
 Set Matches =objRegExp.Execute(strs)'開始執行配置 
 For Each Match in Matches 
  RetStr = RetStr &getimgs( Match.Value )'執行第二輪的匹配 
 Next 
 ShowPic = RetStr
End Function
Function getimgs(str) 
 getimgs="" 
 Set objRegExp1 = New Regexp 
 objRegExp1.IgnoreCase = True 
 objRegExp1.Global = True 
 objRegExp1.Pattern = "http://.+?"""'取出裡面的地址 
 set mm=objRegExp1.Execute(str) 
 For Each Match1 in mm 
  getimgs=getimgs&left(Match1.Value,len(Match1.Value)-1)&"||"'把裡面的地址串起來備用 
 next 
End Function 
'取得圖片內容
function getHTTPPage(url) 
 on error resume next 
 dim http 
 set http=server.createobject("MSxml2.xmlhttp")'使用XMLhttp的方法來獲得圖片的內容 
 Http.open "GET",url,false 
 Http.send() 
 if Http.readystate<>4 then 
 exit function 
 end if 
 getHTTPPage=Http.responseBody 
 set http=nothing 
 if err.number<>0 then err.Clear 
end function 
'保存圖片
function saveimage(from,tofile) 
 dim geturl,obJStream,imgs 
 geturl=trim(from) 
 imgs=gethttppage(geturl)'取得圖片的具休內容的過程 
 Set obJStream = Server.CreateObject("ADODB.Stream")'建立ADODB.Stream對象,必須要ADO 2.5以上版本 
 obJStream.Type =1'以二進制模式打開 
 obJStream.Open 
 obJStream.write imgs'將字符串內容寫入緩沖 
 obJStream.SaveToFile server.mappath(tofile),2'-將緩沖的內容寫入文件 
 obJStream.Close()'關閉對象 
 set obJStream=nothing 
end function 

'調用實例
Dim strpic,i,fname
strpic = ShowPic("<DIV align=center><IMG src=""strpic = Split(strpic,"||")
If UBound(strpic) > 0 Then 
 For i = 0 To UBound(strpic) - 1
  '保存圖片
  fname=cstr(i&mid(strpic(i),instrrev(strpic(i),"."))) 
  saveimage(strpic(i),fname)
 Next
Else
End If

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved