码迷,mamicode.com
首页 > Web开发 > 详细

asp 正则替换函数

时间:2014-07-14 09:18:58      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:cti   io   re   new   c   res   

Function RegExpTest(patrn,str1,strng)
Dim regEx‘,str1 ‘ 建立变量
‘str1 = "The quick brown fox jumped over the lazy dog."
Set regEx = New RegExp ‘ 建立正则表达式
regEx.Pattern = patrn ‘ 设置模式
regEx.IgnoreCase = True ‘ 设置是否区分大小写
‘RegExpTest = regEx.test(strng)‘ 执行搜索
RegExpTest = regEx.Replace(str1,strng)
End Function
response.write RegExpTest("fox","The quick brown fox jumped over the lazy dog.","IS1 is2 IS3 is4")‘(正则表达式 要拿来替换的,原字符串,替换成的字符)

asp 正则替换函数,布布扣,bubuko.com

asp 正则替换函数

标签:cti   io   re   new   c   res   

原文地址:http://www.cnblogs.com/alex-13/p/3840049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!