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

ASP獲取代碼中第一張圖片地址

編輯:ASP技巧

'把pattern 又修改了下

'code要檢測的代碼
'http://www.devdao.com
'leixing Html 或者ubb
'nopic 代碼沒有圖片時默認值

function toppic(code,leixing,nopic)
        set regex = new regexp
        regex.ignorecase = true
        regex.global = true
        if leixing = "Html" then
                regex.pattern = "<img(.*?)src\s?\=\s?(\u0022?)([^\u0022\/>]+)"
        else
                regex.pattern = "\[img\]([^\u005B]+)“
        end if
        set matches = regex.execute(code)
        if regex.test(code) then
                                  if leixing = "Html" then
                           toppic = matches(0).submatches(3)
                                  else
                                           toppic = matches(0).submatches(0)
                                  end if
        else
                toppic = nopic
        end if
end function
code1 = "<img src=""" ?>?
pic = toppic(code1,"Html","nopic.gif")
response.Write pic

 

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