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...
  1. function ereg_replace(pattern,change,str)
  2. Dim ObjRegexp
  3. Set ObjRegexp = New RegExp
  4. ObjRegexp.Global = True
  5. ObjRegexp.IgnoreCase = True
  6. ObjRegexp.Pattern = pattern
  7. str = ObjRegexp.Replace(str,change)
  8. Set ObjRegexp = Nothing
  9. ereg_replace = str
  10. end Function

以上是关于Asp ereg U replace函数(类似于php函数)的主要内容,如果未能解决你的问题,请参考以下文章

ereg()替换为preg_match(),ereg_repalce替换为preg_replace得加斜杠

PHP 清除HTML代码空格回车换行符的函数

PHP 替换中文字符的方法

php 测试ereg_replace()替换eregi_replace()ereg()eregi()split()(不推荐使用php的东西)

PHP 替换中文字符的方法

php str_replace()——字符串替换函数