exec() vs match() vs test() vs search() vs indexOf() (v46)

Revision 46 of this benchmark created on


Description

Tests to determine which function is faster for detecting whether a string matches a regex pattern or simply contains substring.

Test runner

Ready to run.

Testing in
TestOps/sec
exec()
if (/abc/gi.exec("xxxxxxxxxabcxxxxxxabcxx") !== null) {
  // String matches regex
}
ready
match()
if ("xxxxxxxxxabcxxxxxxabcxx".match(/abc/gi) !== null) {
  // String matches regex
}
ready
test()
if (/abc/gi.test("xxxxxxxxxabcxxxxxxabcxx") !== false) {
  // String matches regex
}
ready
indexOf()
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("abc") >= 0) {
  // String contains substring
}
ready

Revisions

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