regexp vs indexOf (v128)

Revision 128 of this benchmark created on


Preparation HTML

<script>
  var str = "hello world!";
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Regexp insensitive
str.match(/world/i);
ready
indexOf
str.indexOf("world");
ready
Regex sensitive
str.match(/world/);
ready

Revisions

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