asp正则表达式 替换HTML源文件里的链接地址
2009-04-22 10:38:41 来源:WEB开发网核心提示: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>音乐
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>音乐之声明星壁纸</a></li</ul>"
想把content的内容变成
content="<ul><li><a href=pic_list_1_2.html>音乐之声明星壁纸</a></li><li><a href=pic_list_32_1.html>音乐之声明星壁纸</a></li</ul>"
<%
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>音乐之声明星壁纸</a></li</ul>"
content=RegUrl(content)
response.write content
%>
- ››asp.net页面弄成伪静态页面
- ››Asp.net 中将汉字转换成拼音的方法
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
更多精彩
赞助商链接