统计字符串中某个字符的个数
Posted hjsn-101ycy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计字符串中某个字符的个数相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <body>
<title>统计字符串中某个字符的个数</title> <script> var countryList=["one","two","three","four","five","six"]; var count=0; document.write("在以下字符中:<br/>"); for(var i in countryList){
document.write(countryList[i]+" "); if(countryList[i].indexOf("o")!=-1) count++; } document.write("<br/> 字符o有"+count+"个。"); </script> </body> </html>
以上
以上是关于统计字符串中某个字符的个数的主要内容,如果未能解决你的问题,请参考以下文章
linux统计一个文件中某个字符串的个数[grep/awk/tr]
linux统计一个文件中某个字符串的个数[grep/awk/tr]