RegExp test / search / match vs. indexOf (v80)

Revision 80 of this benchmark created on


Preparation HTML

<script>
  var str = 'inline-block';
</script>

Setup

var precompiledRegex = /inline/;

Test runner

Ready to run.

Testing in
TestOps/sec
test
/inline/.test(str);
ready
search
str.search(/inline/) > -1;
ready
match
str.match(/inline/).length > 0;
ready
indexOf
str.indexOf(/inline/) > -1;
ready
precompiled test
precompiledRegex.test(str);
ready
precompiled search
str.search(precompiledRegex) > -1;
ready
precompiled match
str.match(precompiledRegex).length > 0;
ready
precompiled indexOf
str.indexOf(precompiledRegex) > -1;
ready
indexOf string primitive
str.indexOf('inline') > -1;
ready
Primitive comparison
str === "inline";
ready
Split
str.split('inline').length === 2;
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.