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

Revision 92 of this benchmark created on


Preparation HTML

<script>
  var str = 'INLINE-block';
  var arr = ['inline', 'inline-block', 'inline-table', 'ruby'];
  var obj = {'inline': true, 'inline-block': true, 'inline-table': true, 'ruby': true};
</script>

Setup

var precompiledRegex = /(inline|ruby)/i;

Test runner

Ready to run.

Testing in
TestOps/sec
test
var re = new RegExp("(inline|ruby)","i");
re.test(str);
ready
search
str.search(/(inline|ruby)/i) > -1;
ready
match
str.match(/(inline|ruby)/i).length > 0;
ready
indexOf
str.indexOf(/(inline|ruby)/i) > -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.toLowerCase().indexOf('inline') > -1 || str.toLowerCase().indexOf('ruby') > -1;
ready
Primitive comparison
str.toLowerCase() === "inline" || str.toLowerCase() === "inline-block" || str.toLowerCase() === "inline-table" || str.toLowerCase() === "ruby";
ready
Array.indexOf
arr.indexOf(str.toLowerCase()) > -1;
ready
Object-based lookup
obj[str.toLowerCase()] === true;
ready

Revisions

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