最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp 非法关键词过滤程序
时间:2022-07-02 22:32:55 编辑:袖梨 来源:一聚教程网
Public Function FilterBadWord(str)
If str = "" Or IsNull(str) Then
FilterBadWord = ""
Exit Function
End If
Dim i,badWordSplit,filterSplit
badWordSplit = Split(Cfg.badWordFilter,"|")
For i = 0 To UBound(badWordSplit)
filterSplit = Split(badWordSplit(i),",")
If InStr(1,str,filterSplit(0),1) Then str = Replace(str,filterSplit(0),filterSplit(1))
Next
FilterBadWord = str
End Function
'使用方法
dim stra
stra = FilterBadWord(request.Form(fom))
相关文章
- 《异界事务所》光谱项链哪几种 06-30
- 《雾境序列》波比角色大全全解析 06-30
- 《星球重启》SSR宠物盲盒免费怎么获得 06-30
- 操作教程:常见的NFT被盗手段?为什么NFT玩家成为黑客目标? 06-30
- 拳皇97风云再起出招表-拳皇97风云再起技能招式表一览 06-30
- 鸣潮坎特蕾拉培养攻略-鸣潮坎特蕾拉培养材料一览 06-30