asp获取内容中第一张图片和全部图片代码
分类:程序开发 Tags: asp 图片 评论:0 浏览:3431 最近更新时间:2014/9/30 22:39:35
'===================================== '获取内容中第一个图片 '===================================== 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 '===================================== '获取内容中所有图片 '===================================== 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 '如果未获取到可显示为 if Get_ImgSrc(str)="" then response.write "未找到图片" else response.write Get_ImgSrc(str) end if
本文地址:/552/
-
• centos系统挂载数据盘方法
• ASP提交Post数据到远程网站的方法
• Asp超精准判断客户端浏览器类型代码
• ASP Access数据库连接关闭与.ldb文件锁定解决方法
• JS显示当前年月日时间分秒代码(时间不断变动)
• 中国十大ASP CMS系统介绍
• ASP过滤所有超链接代码
• MySQL报Field‘***’doesn’t have a default value错误的解决办法
• UEditor百度编辑器在html代码模式无法更新内容的解决办法
• 打开网页自动弹出QQ对话框代码