JS实现如何的统计一个字符串中相同的字符个数

Posted likaibei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS实现如何的统计一个字符串中相同的字符个数相关的知识,希望对你有一定的参考价值。

 
 1          var string="start,stop,speed,start,speed,start,relocicty,start,start,start,start";
 2          var count=1;
 3          for (let index = 0; index < string.length; index++) {
 4             var a=string.indexOf("start",index);
 5              // console.log(a);
 6             if(a!=-1&&string.indexOf("start",index)!=string.indexOf("start",index-1)){
 7                  count++;
 8             }
 9          }
10          console.log(count);

 

以上是关于JS实现如何的统计一个字符串中相同的字符个数的主要内容,如果未能解决你的问题,请参考以下文章

转载:js实现统计字符串中特定字符出现个数的方法

字符统计

7-2 sdut-统计两个字符串中相同的字符个数

C语言,统计文件中的字符个数

华为机试 — 字符统计

C语言 编写一个程序 能够统计一段文字里相同字符串的个数