indexof

Posted liyifeng0528

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了indexof相关的知识,希望对你有一定的参考价值。

string msg = "liyifeng";
         //判断这个字符串中出现i的次数,和每次出现的索引位置
             int count = 0;
             string keywords = "i";
           int index = 0;
             while ((index = msg.IndexOf(keywords, index)) != -1) {
                 count++;
                 Console.WriteLine("第{0}次出现【{1}】,索引是:{2}", count, keywords, index);
                  //下次从这个词末的位置开始查找,所以要跳过本次该词的长度个字符位置继续查找
                 index = index + keywords.Length;
            }
             Console.WriteLine("==========================================");
            Console.WriteLine("【{0}】一次一共出现了{1}次。", keywords, count);
Console.ReadLine();

以上是关于indexof的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript之数组去重

快速掌握js字符串方法