今天自己用split()方法實作了統計某個字元在字串中出現的次數,順便又百度了一下,看看有沒有其它方法,結果看到下面這段函數,但其中的 count ; offset = subStr.length;
有點看不懂是什麼意思,請路過的前輩解惑!
function countInstances (mainStr, subStr) {
var count = 0;
var offset = 0;
do{
offset = mainStr.indexOf(subStr, offset); // 通过indexOf获得某字符在字符串中出现的位置
if( offset != -1 ) { // 如果某字符存在于字符串中
count++;
offset += subStr.length;
}
} while ( offset != -1 );
return count;
}
countInstances('www.segmentfault.com', '.')
// alert( countInstances('www.segmentfault.com', '.') );
typecho2017-06-12 09:35:03
indexOf用法count++; offset += subStr.length;
count
表示的是計數器,記下字元出現的次數offset
值給每個父親的offset 索引位置開始找子字串subStr
當
offset
找到了,就count
+1,再從offset += subStr.length
的位置開始找,因為最初判斷indexOoff找到子字串的索引。 。
我好像說的有的複雜,其實很簡單的,你在紙上畫下執行過程就知道了