1. 首页
  2. 数据库
  3. 其它
  4. asp 过滤非法字符函数

asp 过滤非法字符函数

上传者: 2021-01-04 01:41:22上传 PDF文件 15.64KB 热度 15次
<% Function cutbadchar(str) badstr=”不|文|明|字|符|列|表|格|式” badword=split(badstr,”|”) For i=0 to Ubound(badword) If instr(str,badword(i)) > 0 then str=Replace(str,badword(i),”***”) End If Next cutbadchar=str End Function Response.Write cutbadchar(“中国不阿斗发射点发明”) %>
用户评论