Asp ereg U replace函数(类似于php函数)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp ereg U replace函数(类似于php函数)相关的知识,希望对你有一定的参考价值。
similar to php ereg_replace.You can pass this pattern [^A-Za-z0-9] and "" to remove from string non alphanumerical chars:
s = ereg_replace("[^A-Za-z0-9]","",s)
I use this function to clean input fields...
function ereg_replace(pattern,change,str) Dim ObjRegexp Set ObjRegexp = New RegExp ObjRegexp.Global = True ObjRegexp.IgnoreCase = True ObjRegexp.Pattern = pattern str = ObjRegexp.Replace(str,change) Set ObjRegexp = Nothing ereg_replace = str end Function
以上是关于Asp ereg U replace函数(类似于php函数)的主要内容,如果未能解决你的问题,请参考以下文章
ereg()替换为preg_match(),ereg_repalce替换为preg_replace得加斜杠
php 测试ereg_replace()替换eregi_replace()ereg()eregi()split()(不推荐使用php的东西)