码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-01-18 21:22:56      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:html   body   dex   for   list   count   rip   script   indexof   

<!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>

以上

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

标签:html   body   dex   for   list   count   rip   script   indexof   

原文地址:https://www.cnblogs.com/hjsn-101ycy/p/10289612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!