程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> 簡單過濾一下廣告的代碼

簡單過濾一下廣告的代碼

編輯:關於ASP編程
好些人跟我要這段東西,其實是個很簡單的代碼,下邊就是,自己拿去改成函數調用就可

dim strA,strB,isOK
strA = "test,you,fuck,money"    '需要過濾的關鍵字內容
strB = "fasfaefwTestfajkewhfwiTuckjfksajfheyou"    '待檢查的內容
isOK = False    '判斷是否含有待過濾內容,如果返回True即為含有,False就是沒有

dim RegExp 
set RegExp=new RegExp 
RegExp.IgnoreCase =False 
RegExp.Global=True 

dim i,j
j = ubound(split(strA,","))
for i=0 to j
    RegExp.Pattern="("&split(strA,",")(i)&")"
    if(RegExp.Test(strB))then
        isOK=True
        exit for
    end if
next
set RegExp=Nothing
response.write(isOK)
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved