vote up 0 vote down star

I have this array.prototype on my page and it seems to be sucking up a lot of processing time:

        Array.prototype.findInArray = function(searchStr) {
    	  var returnArray = false;
    	  for (i=0; i<this.length; i++) {
    		if (typeof(searchStr) == 'function') {
    		  if (searchStr.test(this[i])) {
    			if (!returnArray) { returnArray = [] }
    			returnArray.push(i);
    		  }
    		} else {
    		  var regexp = new RegExp(".*" + searchStr + ".*");
    		  if (this[i].match(regexp)) {
    			if (!returnArray) { returnArray = [] }
    			returnArray.push(i);
    		  }
    		}
    	  }
    	  return returnArray;
    	}
flag

67% accept rate
Why don't you time it both ways? I suspect that indexOf will be faster in most cases, but it's better to test than to suspect. – mmyers Jun 17 at 17:10
Don't forget that every environment can be different. Time it in Firefox and you may bet a different outcome than in Opera, Chrome, or Safari. I'd time it in Internet Explorer since it's the runt of the pack--get it fast in IE and it should be plenty fast everywhere else. – Nosredna Jun 17 at 17:13

3 Answers

vote up 7 vote down check

First of all, you know that you don't have to have the ".*" on either side, right? A regular expression already by default will match anywhere inside the string. Second, if you are just searching for a constant string, and don't need to use any of the advanced stuff that regular expressions offer, then it's definitely faster to use .indexOf(). Plus that way you won't have to worry about escaping characters that have special meaning.

link|flag
4  
+1 I cannot imagine how a regular expression could beat indexOf. If you don't need regex-power, don't use regex. – Michael Haren Jun 17 at 17:15
vote up 0 vote down

Regular expressions can vary wildly. I imagine that a simple, well-crafted regular expression might work as fast or faster than indexOf(). On the other hand, a complex regular expression would need more time since it's doing more work.

You also have a browser implementation issue clouding matters. Short of writing a timed loop to measure the time taken for each browser to do each type of detection with your specific needs, you can't really get a solid answer.

link|flag
vote up 0 vote down

What is worse is you create a new regular expression object on every iteration of the loop- define it once, outside the loop, or pass it as an argument.

Also, for this use, test is better and quicker than match.

link|flag

Your Answer

Get an OpenID
or

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