specific word count (index of )
Posted cheyenne-007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了specific word count (index of )相关的知识,希望对你有一定的参考价值。
#region 统计文件中某一词语出现次数。 while (true) { Console.WriteLine("请输入要查询的词语:"); string word = Console.ReadLine(); string[] novelArr = File.ReadAllLines("xiyou.txt", Encoding.Default); int count = 0;//计数变量 int index = 0;//每行的 初始索引 for (int i = 0; i < novelArr.Length; i++) { index = 0;//遍历完一行后重新归零 if (novelArr[i].Length == 0)//如果当前行为空,跳出 continue; while ((index = novelArr[i].IndexOf(word, index)) != -1) { //每行都是从索引0开始查,将找到的第一个索引赋值给当前索引,即跳过找过的 count++; index += word.Length;//跳过所查字符长度 } } Console.WriteLine("{0}出现了{1}次。", word, count); } #endregion
以上是关于specific word count (index of )的主要内容,如果未能解决你的问题,请参考以下文章