indexof函数分析及其计数字符串函数正则表达式的例子及分析
Posted ceneasy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了indexof函数分析及其计数字符串函数正则表达式的例子及分析相关的知识,希望对你有一定的参考价值。
indexof函数分
在一串字符串中统计指定字符串数量的函数。
var mainStr="star,star,study,study,star,hello";
var subStr="star";
function countStar(mainStr, subStr)
{
var count = 0;
var find = 0;
do
{
find = mainStr.indexOf(subStr, find);
if(find != -1)
{
count++;
find += subStr.length;
}
}while(find != -1)
return count;
}
document.write(countStar(mainStr, subStr));
以上是关于indexof函数分析及其计数字符串函数正则表达式的例子及分析的主要内容,如果未能解决你的问题,请参考以下文章