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

使用IndexOf统计文件中某一词语出现次数

时间:2015-08-12 13:08:17      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

 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

 

使用IndexOf统计文件中某一词语出现次数

标签:

原文地址:http://www.cnblogs.com/AlanSun/p/4723819.html

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