国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

asp中獲取內容中所有圖片與獲取內容中第一個圖片的代碼

2024-05-04 11:00:03
字體:
來源:轉載
供稿:網友
復制代碼 代碼如下:
'=====================================
'獲取內容中所有圖片
'=====================================
Function Get_ImgSrc(ByVal t0)
Dim t1,Regs,Matches,Match
t1=""
IF Not(IsNull(t0) Or Len(t0)=0) Then
Set Regs=New RegExp
Regs.Pattern="<img[^>]+src=""([^"">]+)""[^>]*>"
Regs.Ignorecase=True
Regs.Global=True
Set Matches=Regs.Execute(t0)
IF Matches.Count>0 Then
For Each Match In Matches
IF Left(Match.SubMatches(0),7)<>"http://" Then
t1=t1&"<option value="""&Match.SubMatches(0)&""">"&Match.SubMatches(0)&"</option>"
End IF
Next
End IF
End IF
Get_ImgSrc=t1
Set Matches=Nothing
Set Regs=Nothing
End Function

'=====================================
'獲取內容中第一個圖片
'=====================================
Function Frist_Pic(ByVal t0)
Frist_Pic=""
Dim Regs,Matches
Set Regs=New RegExp
Regs.Ignorecase=True
Regs.Global=True
Regs.Pattern="<img[^>]+src=""([^"">]+)""[^>]*>"
Set Matches=Regs.Execute(t0)
IF Regs.test(t0) Then
Frist_Pic=Matches(0).SubMatches(0)
End IF
Set Matches=Nothing
Set Regs=Nothing
End Function
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 安西县| 崇明县| 平果县| 白河县| 青田县| 土默特右旗| 桃园市| 古浪县| 绥阳县| 江城| 安平县| 祁门县| 寻乌县| 牟定县| 江口县| 木里| 双江| 驻马店市| 长寿区| 巴南区| 收藏| 阳江市| 彭山县| 南开区| 汕尾市| 屏东市| 汉沽区| 通榆县| 射阳县| 深泽县| 大城县| 武强县| 阿图什市| 九龙坡区| 东港市| 文昌市| 安宁市| 清徐县| 新沂市| 鲁山县| 奈曼旗|