统计字符串中某个字符的个数

Posted lan-yu

tags:

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

 1 <!DOCTYPE html>
 2 <html>
 3 <body>
 4     <title>统计字符串中某个字符的个数</title>
 5     <script>
 6         var countryList=["one","two","three","four","five","six"];
 7         var count=0;
 8         document.write("在以下字符中:<br/>");
 9         for(var i in countryList){
10             document.write(countryList[i]+" ");
11             if(countryList[i].indexOf("o")!=-1)
12             count++;
13         }
14     document.write("<br/> 字符o有"+count+"个。");
15     </script>
16 </body>
17 </html>

技术分享图片

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

统计字符串中某个字符的个数

统计字符串中某个字符的个数

linux统计一个文件中某个字符串的个数[grep/awk/tr]

linux统计一个文件中某个字符串的个数[grep/awk/tr]

linux统计一个文件中某个字符串的个数[grep/awk/tr]

linux统计一个文件中某个字符串的个数[grep/awk/tr]