Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I count the number of times a particular string occurs in another string. For example, this is what I am trying to do in Javascript:

var temp = "This is a string.";
alert(temp.count("is")); //should output '2'
share|improve this question
1  
It depends on whether you accept overlapping instances, e.g. var t = "sss"; How many instances of the substring "ss" are in the string above? 1 or 2? Do you leapfrog over each instance, or move the pointer character-by-character, looking for the substring? – Tim Oct 24 '10 at 19:30

10 Answers

up vote 106 down vote accepted
var temp = "This is a string.";

// the g in the regular expression says to search the whole string 
// rather than just find the first occurrence
var count = temp.match(/is/g);  

alert(count.length);
share|improve this answer
3  
+1 - absolutely the way to go – Nick Craver Oct 24 '10 at 18:46
6  
this will barf when the regex doesn't match anything. – jberryman Oct 27 '11 at 21:28
2  
modern and elegant, but Vitimtk's solution is much more efficient. what do you all think of his code? – TruMan1 Nov 4 '11 at 2:15
2  
This answers the question best. If someone asked "How can I do this 10x faster in special case (without regexps)" Vitimtk would win that question. – Dzhaughn Mar 16 '12 at 9:52
2  
Thanks for this.. I went with count = (str.match(/is/g) || []).length to handle if you don't have a match. – Matt Oct 29 '12 at 12:19
show 6 more comments
/** Function count the occurrences of substring in a string;
 * @param {String} string   Required. The string;
 * @param {String} subString    Required. The string to search for;
 * @param {Boolean} allowOverlapping    Optional. Default: false;
 */
function occurrences(string, subString, allowOverlapping){

    string+=""; subString+="";
    if(subString.length<=0) return string.length+1;

    var n=0, pos=0;
    var step=(allowOverlapping)?(1):(subString.length);

    while(true){
        pos=string.indexOf(subString,pos);
        if(pos>=0){ n++; pos+=step; } else break;
    }
    return(n);
}

I've made a benchmark test and my function is more then 10 times faster then the regexp match function posted by gumbo. In my test string is 25 chars length. with 2 occurences of the character 'o'. I executed 1 000 000 times in Safari.

Safari 5.1

Benchmark> Total time execution: 5617 ms (regexp)

Benchmark> Total time execution: 881 ms (my function 6.4x faster)

Firefox 4

Benchmark> Total time execution: 8547 ms (Rexexp)

Benchmark> Total time execution: 634 ms (my function 13.5x faster)


Edit: changes I've made

  • cached substring length

  • added type-casting to string.

  • added optional 'allowOverlapping' parameter

  • fixed correct output for "" empty substring case.

share|improve this answer
2  
old school but efficient! – TruMan1 Nov 4 '11 at 2:17
1  
+1 for bringing while loops back! (and being fast) – Evan Moran Jan 4 '12 at 1:01
1  
I repeated this test in Safari 5 and got similar results with a small (100b) string, but with a larger string (16kb), the regex ran faster for me. For one iteration (not 1,000,000), the difference was less than a millisecond anyway, so my vote goes to the regex. – arlomedia Apr 4 '12 at 23:04
1  
+1, but you are checking substring.length on almost every loop, you should consider caching it outside the while – ajax333221 Jun 6 '12 at 23:22
1  
@ajax333221 OMG you read my mind, I did this improvement a few days ago, and I was going to edit my answer jsperf.com/count-string-occurrence-in-string – Vitim.us Jun 7 '12 at 3:24
show 4 more comments

You can use match to define such function:

String.prototype.count = function(search) {
    var m = this.match(new RegExp(search.toString().replace(/(?=[.\\+*?[^\]$(){}\|])/g, "\\"), "g"));
    return m ? m.length:0;
}
share|improve this answer
function countInstances(string, word) {
   var substrings = string.split(word);
   return substrings.length - 1;
}
share|improve this answer
2  
This is an unsafe/inaccurate approach, for example: countInstances("isisisisisis") === 0. – Nick Craver Oct 24 '10 at 18:44
2  
returns 6 for me... – Orbit Oct 24 '10 at 18:53
@Nick Craver: That returns six for me too (running Google Chrome on OS X). – Antal S-Z Oct 24 '10 at 19:44
@Antal - Looks like a bug in the previous beta build of chrome, works after updating to latest, I'd still steer clear of this method though. – Nick Craver Oct 24 '10 at 19:59

Just code-golfing the above solution :-)

alert("This is a string.".match(/is/g).length);

share|improve this answer

You can try this:

var theString = "This is a string.";
theString.split("is").length - 1;
share|improve this answer

I think the purpose for regex is much different from indexOf. indexOf simply find the occurance of a certain string while in regex you can use wildcards like [A-Z] which means it will find any capital character in the word without stating the actual character.

Example:

var index="This is a string".indexOf("is");
var length="This is a string".match(/[a-z]/g).length; 
// where [a-z] is a regex wildcard expression thats why its slower
share|improve this answer

Try this:

function countString(str, search){
    var count=0;
    var index=str.indexOf(search);
    while(index!=-1){
        count++;
        index=str.indexOf(search,index+1);
    }
    return count;
}
share|improve this answer

Super duper old, but I needed to do something like this today and only thought to check SO afterwards. Works pretty fast for me.

String.prototype.count = function(substr,start,overlap) {
    overlap = overlap || false;
    start = start || 0;

    var count = 0, 
        offset = overlap ? 1 : substr.length;

    while((start = this.indexOf(substr, start) + offset) !== (offset - 1))
        ++count;
    return count;
};
share|improve this answer

My solution:

function countOcurrences(str, value){
   var regExp = new RegExp(value, "gi");
   return str.match(regExp) ? str.match(regExp).length : 0;  
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.