在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
这是一个替换动态网址成静态网址的程序: 复制代码 代码如下: <% Function RegUrl(TheStr) Set RegEx = New RegExp RegEx.IgnoreCase =True regEx.Global = True '****这一句加上是全部替换,如果不加,只替换第一个 RegEx.Pattern = "pic_list_mb\.asp\?id=(\d*)\&page=(\d*)" RegUrl=RegEx.replace(TheStr,"pic_list_$1_$2.html") End Function content="<ul><li><a href=pic_list_mb.asp?id=1&page=2>动态网址</a></li><li><a href=pic_list_mb.asp?id=32&page=1>动态网址1</a></li</ul>" content=RegUrl(content) response.write content %> 生成的静态网址是:pic_list_1_2.html pic_list_32_1.html 限定符 IISBOY网,IISBOY.COM 定位符 www.iisboy.com iisboy原创 |
请发表评论