asp正则替换内容里的特定内容
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
<%
content = "<!--开始-->这里第一个需要替换的内容<!--结束--> 不需要替换的内容 <!--开始-->这里第二个需要替换的内容<!--结束--> asdas d asd as d as d asd as d asd as <!--开始-->这里第三个需要替换的内容<!--结束--> <!--开始-->这里第四个需要替换的内容<!--结束--> 自行车自行车形成子形成在才这些才在" '正则替换函数' Function ReplaceExp(srcstr, patrn, replStr) Set regEx = New RegExp regEx.Pattern = patrn regEx.IgnoreCase = True regEx.Global = True regEx.Execute(srcstr) ReplaceExp = regEx.Replace(srcstr, replStr) Set regEx = Nothing End Function '调用并输出' Response.write content Response.write "<hr>" Response.write ReplaceExp(content,"\<\!\-{2}开始\-{2}\>.*?\<\!\-{2}结束\-{2}\>","被替换了") %> 该文章在 2014/7/27 13:19:56 编辑过 |
关键字查询
相关文章
正在查询... |