function savepic(str)
content=str&""
regstr="src\=.+?\.(gif|jpg)"
url=Replace(Replace(Replace(RegExp_Execute(regstr,content),"'",""),"""",""),"src=","")
savepic=url end function
Function RegExp_Execute(patrn, strng) Dim regEx, Match, Matches,values '建立变量。 Set regEx =New RegExp '建立正则表达式。 regEx.Pattern = patrn '设置模式。 regEx.IgnoreCase =true'设置是否区分字符大小写。 regEx.Global =True'设置全局可用性。 Set Matches = regEx.Execute(strng) '执行搜索。 ForEach Match in Matches '遍历匹配集合。 values=values&Match.Value&"," Next
RegExp_Execute = values End Function
posted on
2008-12-18 15:41Squall
阅读(285)
评论(0)
编辑收藏举报