用(yòng)asp獲取内容中的(de)圖片與獲取内容中的(de)第一個(gè)圖片地址,主要是PYCMS中保存内容中的(de)圖片需要用(yòng)得(de)到,使用(yòng)的(de)是正則的(de)方法
'===================================== '獲取内容中第一張圖片'===================================== Function Frist_Pic(ByVal t0) Frist_Pic="" Dim Regs,Matches Set Regs=New RegExp Regs.Ignorecase=True Regs.Global=True Regs.Pattern="]+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="]+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&"