1 #region 统计文件中某一词语出现次数。 2 3 while (true) { 4 Console.WriteLine("请输入要查询的词语:"); 5 string word = Console.ReadLine(); 6 string[] novelArr = File.ReadAllLines("xiyou.txt", Encoding.Default); 7 int count = 0;//计数变量 8 int index = 0;//每行的 初始索引 9 10 for (int i = 0; i < novelArr.Length; i++) { 11 index = 0;//遍历完一行后重新归零 12 if (novelArr[i].Length == 0)//如果当前行为空,跳出 13 continue; 14 while ((index = novelArr[i].IndexOf(word, index)) != -1) { //每行都是从索引0开始查,将找到的第一个索引赋值给当前索引,即跳过找过的 15 count++; 16 index += word.Length;//跳过所查字符长度 17 } 18 } 19 20 Console.WriteLine("{0}出现了{1}次。", word, count); 21 } 22 23 #endregion
时间: 2024-10-11 18:10:05