asp正则替换内容里的特定内容
作者:山坛兄弟 ⁄ 时间:2013年06月22日 ⁄ 分类:
编程技术
⁄ 评论:0
<%
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}\>","被替换了")
%>
本文由山坛兄弟原创或编辑,转载请保留链接【asp正则替换内容里的特定内容】http://www.030904.net/program/27.html
上一篇: 利用ASP正则提取文章里面的图片的有效的src地
下一篇:ASP留言板IP或IP段限制与限制留言次数