這個(gè)VBS是用來將一個(gè)本地網(wǎng)頁中的URL篩選出來并保存在新的網(wǎng)頁文件中。當(dāng)然,只要改變里面的正則表達(dá)式,就可以作其他用途了。
使用方法:將下面的代碼保存為jb51.vbs 然后拖動你保存在本地的htm頁面,拖放在這個(gè)vbs即可
代碼如下:
'備注:URL篩選小工具
'防止出現(xiàn)錯(cuò)誤
On Error Resume Next
'vbs代碼開始----------------------------------------------
Dim p,s,re
If Wscript.Arguments.Count=0 Then
Msgbox "請把網(wǎng)頁拖到本程序的圖標(biāo)上!",,"提示"
Wscript.Quit
End If
For i= 0 to Wscript.Arguments.Count - 1
p=Wscript.Arguments(i)
With CreateObject("Adodb.Stream")
.Type=2
.Charset="GB2312"
.Open
.LoadFromFile=p
s=.ReadText
Set re =New RegExp
re.Pattern= "[A-z]+://[^""<>()\s']+"
re.Global = True
If Not re.Test(s) Then
Msgbox "該網(wǎng)頁文件中未出現(xiàn)網(wǎng)址!",,"提示"
Wscript.Quit
End If
Set Matches = re.Execute(s)
s=""
For Each Match In Matches
s=s & "<a href=""" & Match.Value & """>" & Match.Value & "<p>"
Next
re.Pattern= "&\w+;?|\W{5,}"
s=re.Replace(s,"")
.Position=0
.setEOS
.WriteText s
.SaveToFile p & "'s URLs.html",2
.Close
End With
Next
Msgbox "網(wǎng)址列表已經(jīng)生成!",,"成功"
'vbs代碼結(jié)束----------------------------------------------