我如何通过jquery找到一个字符出现在文本中的次数,例如我有 1 字符和文字 143443143241 所以这里字符1出现3时,我该怎么检查呢。
答案 0 :(得分:2)
var blah = "143443143241";
var count = (blah.match(/1/g) || []).length; // <-- returns the number of occurrences. 3 in this case.
答案 1 :(得分:1)
"143443143241".match(/1/g).length
编辑:约瑟夫在我面前说了40秒。
答案 2 :(得分:0)
这只是一个javascript问题,或一般编程问题。
function countOccurences(string, testChar) {
var count = 0;
for(var i = 0; i<string.length; i++){
if(string[i] == testChar) { count++; }
}
return count;
}
countOccurences("143443143241", "1");