Asp获取字符串中的图片地址

本文介绍了一个用于从文本中提取本地图片URL的VBScript脚本。该脚本通过解析字符串来查找本地图片链接,并提供了不同类型的筛选选项。适用于需要批量处理图片链接的场景。

 

'===========================================================
'
获取字符串中的本地图片地址
'
Typ 1 所有图片;2本地图片;3本地图片
'
===========================================================
Function GetLocalPic_Url(str,Typ)
    
Dim Pic_Url,Temp_Url
    
do while ContentInnerPicTF(str,"TF")
        Temp_Url
=ContentInnerPicTF(str,"PicUrl")
        str
=Replace(str,Temp_Url,"")
        
        
Select Case Typ
            
Case 1
                Pic_Url
=Pic_Url&"|"&Temp_Url
            
Case 2
                
If instr(Temp_Url,"http://")=0 then Pic_Url=Pic_Url&"|"&Temp_Url
            
Case 3
                
If instr(Temp_Url,"http://")<>0 then Pic_Url=Pic_Url&"|"&Temp_Url
        
End Select
        
        
If left(trim(Pic_Url),1)="|" then Pic_Url=right(Pic_Url,len(Pic_Url)-1)
        
    
loop
    GetLocalPic_Url
=Pic_Url
End Function

 

ContractedBlock.gifExpandedBlockStart.gifCode
'===========================================================
'
判断传入的字符传中是否包含本地图片并取得此图片地址
'
===========================================================
Function ContentInnerPicTF(StrCon,ReturnTF)
    
Dim ConStr,Re,InnerPicAll,FistPicUrl,PicUrlStr
    ConStr 
= StrCon & ""
    
Set Re = New RegExp
    Re.IgnoreCase 
= True
    Re.Global 
= True
    Re.Pattern 
= "(src\S+\.{1}(gif|jpg|png)(""|\'|>|\s)?)"
    InnerPicAll 
= ""
    
Set InnerPicAll = Re.Execute(ConStr)
    
Set Re = Nothing
    
    FistPicUrl 
= ""
    
    
For Each PicUrlStr in InnerPicAll
        FistPicUrl 
= Replace(Replace(Replace(PicUrlStr,"src=",""),"'",""),"""","")
        
If LCase(Left(FistPicUrl,Len(sRootDir))) = LCase(sRootDir) Then
            FistPicUrl 
= Mid(FistPicUrl,Len(sRootDir)+1)
        
End If
        
Exit For
    
Next
    
    
If ReturnTF = "TF" Then
        
If FistPicUrl <> "" And (Not IsNull(FistPicUrl)) then
            ContentInnerPicTF 
= True
        
Else
            ContentInnerPicTF 
= False 
        
End If
    
ElseIf ReturnTF = "PicUrl" Then
        
If FistPicUrl <> "" And (Not IsNull(FistPicUrl)) then
            ContentInnerPicTF 
= FistPicUrl
        
End If
    
End If     

End Function

转载于:https://www.cnblogs.com/chthp/archive/2008/10/06/1304717.html

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值