凤来仪

专业的计算机学习网站

首页 > ASP匹配注解[数字]

ASP匹配注解[数字]

点击:113 发布时间:

Function RegExpTest(strng)
i = 0
Set regEx = New RegExp
regEx.Pattern = "\[+\d+\]"
regEx.IgnoreCase = True
regEx.Global = True
RegExpTest= regEx.Replace(strng,"")
End Function

response.write RegExpTest("哈哈哈[33]【3】[d]呵呵呵[33]")