得到页面源代码..,里面有如下语句: ............. <script> var goSwidth = 60; var goSheight = 60; var goSflashfile = 'http://cn.yimg.com/i/wea/v1/ico/w32.swf'; var imgSrc = 'http://cn.yimg.com/i/wea/w32.gif' var goLink = ''; </script> .............. 我想得到 http://cn.yimg.com/i/wea/v1/ico/w32.swf 这一串,如何使用正则? set reg=new Regexp reg.Multiline=True reg.Global=Flase reg.IgnoreCase=true reg.Pattern="本帖所求的正则表达式" Set matches = reg.execute(wstr)'wstr为得到的页面代码 For Each match1 in matches response.write(match1.Value) Next