读取txt转换成List
Posted tyler_lt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取txt转换成List相关的知识,希望对你有一定的参考价值。
敏感词匹配
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 }
以上是关于读取txt转换成List的主要内容,如果未能解决你的问题,请参考以下文章