码迷,mamicode.com
首页 > 其他好文 > 详细

读取txt转换成List

时间:2017-12-09 13:05:21      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:system   progress   display   main   string   cto   coding   ring   alt   

 敏感词匹配

技术分享图片
 1                     string[] strs2 = File.ReadAllLines(System.AppDomain.CurrentDomain.BaseDirectory + @"Files\Cache\SensitiveWords.txt", Encoding.UTF8);
 2                     List<string> sensitiveWords = new List<string>(strs2);
 3                     bool havaSensitiveWord = false;
 4                     foreach (string str in sensitiveWords)
 5                     {
 6                         if (progress_content.Contains(str))
 7                         {
 8                             havaSensitiveWord = true;
 9                             break;//只要包含一个,跳出foreach循环
10                         }
11                     }
View Code

读取txt转换成List

标签:system   progress   display   main   string   cto   coding   ring   alt   

原文地址:http://www.cnblogs.com/tylerflyn/p/8011128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!