程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 關於髒字典過濾問題-用正則表達式來過濾髒數據 關於髒字典過濾問題-用正則表達式來過濾髒數據

關於髒字典過濾問題-用正則表達式來過濾髒數據 關於髒字典過濾問題-用正則表達式來過濾髒數據

編輯:.NET實例教程

方法一:使用正則表達式
  
   1//髒字典數據存放文件路徑
   2 private static string FILE_NAME="zang.txt";
   3 //髒數據字典表,如:髒數據一|髒數據二|髒數據三
   4 public static string dirtyStr="";
   5
   6 public ValidDirty()
   7 {
   8 if (HttpRuntime.Cache["Regex"]==null)
   9 {
  10 dirtyStr=ReadDic();
  11 //用於檢測髒字典的正則表達式
  12 Regex validateReg= new Regex("^((?!"+dirtyStr+").(?<!"+dirtyStr+"))*$",RegexOptions.Compiled|RegexOptions.ExplicitCapture);
  13 HttpRuntime.Cache.Insert("Regex" ,validateReg,null,DateTime.Now.AddMinutes(20) ,TimeSpan.Zero);
  14 }
  15
  16 }
  17 private string ReadDic()
  18 {
  19 FILE_NAME=Environment.CurrentDirectory+"\\"+FILE_NAME;
  20
  21 if (!File.Exists(FILE_NAME))
  22 {
  23 Console.WriteLine("{0} does not exist.", FILE_NAME);
  24 return "";
  25 }
  26 StreamReader sr = File.OpenText(FILE_NAME);
  27 String input="";
  28 while (sr.Peek() > -1)
  29 {
  30 input += sr.ReadLine() ;
  31 }
  32
  33 sr.Close();
  34 return input;
  35
  36 }
  37
  38
  39 public bool ValidByReg(string str)
  40 {
  41 Regex reg=(Regex)HttpRuntime.Cache["Regex"];
  42 return reg.IsMatch(str) ;
  43
  44 }
  
  感覺這種方法的執行效率不是很高,簡單的測試了一下 1000字的文章,髒字典有800多個關鍵字
  式了一下是 1.238秒,大家有沒有更好的方法,

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved