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'
|
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:
|
|||||
|
|
|||||||||||||||||||||
|
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
|
|||||||||||||||||||||
|
|
You can use
|
||||
|
|
|
|||||||||||||
|
|
Just code-golfing the above solution :-)
|
|||
|
|
|
You can try this:
|
||||
|
|
|
I think the purpose for regex is much different from Example:
|
||||
|
|
|
Try this:
|
|||
|
|
|
Super duper old, but I needed to do something like this today and only thought to check SO afterwards. Works pretty fast for me.
|
|||
|
|
|
My solution:
|
|||
|
|