当前位置: 代码迷 >> ASP >> 在表单中过滤字符串,请教一下代码如何写
  详细解决方案

在表单中过滤字符串,请教一下代码如何写

热度:64   发布时间:2012-06-09 17:16:42.0
在表单中过滤字符串,请问一下代码怎么写
在表单中过滤字符串,请问一下代码怎么写比如我要过滤AAA、BBB
我用ASP,请教高手

------解决方案--------------------
str = Replace(str,"AAA","")
str = Replace(str,"BBB
","")
  相关解决方案