asp

位置:IT落伍者 >> asp >> 浏览文章

asp中获取内容中所有图片与获取内容中第一个图片的代码


发布日期:2024年08月10日
 
asp中获取内容中所有图片与获取内容中第一个图片的代码

复制代码 代码如下:

=====================================

获取内容中所有图片

=====================================

Function Get_ImgSrc(ByVal t)

Dim tRegsMatchesMatch

t=

IF Not(IsNull(t) Or Len(t)=) Then

Set Regs=New RegExp

RegsPattern=<img[^>]+src=([^>]+)[^>]*>

RegsIgnorecase=True

RegsGlobal=True

Set Matches=RegsExecute(t)

IF MatchesCount> Then

For Each Match In Matches

IF Left(MatchSubMatches())<>// Then

t=t&<option value=&MatchSubMatches()&>&MatchSubMatches()&</option>

End IF

Next

End IF

End IF

Get_ImgSrc=t

Set Matches=Nothing

Set Regs=Nothing

End Function

=====================================

获取内容中第一个图片

=====================================

Function Frist_Pic(ByVal t)

Frist_Pic=

Dim RegsMatches

Set Regs=New RegExp

RegsIgnorecase=True

RegsGlobal=True

RegsPattern=<img[^>]+src=([^>]+)[^>]*>

Set Matches=RegsExecute(t)

IF Regstest(t) Then

Frist_Pic=Matches()SubMatches()

End IF

Set Matches=Nothing

Set Regs=Nothing

End Function

               

上一篇:asp 验证用户名是否包含有非常字符的函数

下一篇:asp统计信息实现代码/文章每日、每周、每月、总访问量的方法