28,408
社区成员
发帖
与我相关
我的任务
分享<div class=""crumbs"">([\s\S]*?)</div> s="<div class=""crumbs""><a href=""http://list.taobao.com/browse/cat-0.htm"">所有分类 </a> <span>> </span>"
s = s & vbcrlf
s = s & "<a href=""http://list.taobao.com/browse/cat-0.htm"">所有分类 </a> <span>> </span>"
s = s & vbcrlf
s = s & "</div>"
Set myRegExp = New RegExp
myRegExp.IgnoreCase = True
myRegExp.Global = True
myRegExp.MultiLine = True
myRegExp.Pattern = "<div class=""crumbs"">((.|[\r\n])*?)</div>"
Set myMatches = myRegExp.Execute(s)
For Each myMatch in myMatches
response.write myMatch.Value
Next