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

Revision 37 of this benchmark created on


Description

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

Test runner

Ready to run.

Testing in
TestOps/sec
exec()
if (/a/.exec("xxxxxxxxxabcxxxxxxabcxx") !== null && /b/.exec("xxxxxxxxxabcxxxxxxabcxx") !== null) {
  // String matches regex
}
ready
match()
if ("xxxxxxxxxabcxxxxxxabcxx".match("a") !== null && "xxxxxxxxxabcxxxxxxabcxx".match("b") !== null) {
  // String matches regex
}
ready
test()
if (/a/.test("xxxxxxxxxabcxxxxxxabcxx") !== false && /b/.test("xxxxxxxxxabcxxxxxxabcxx") !== false) {
  // String matches regex
}
ready
search()
if (("xxxxxxxxxabcxxxxxxabcxx").search("a") !== -1 && ("xxxxxxxxxabcxxxxxxabcxx").search("b") !== -1) {
  // String matches regex
}
ready
indexOf()
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("a") !== -1 && "xxxxxxxxxabcxxxxxxabcxx".indexOf("b") !== -1) {
  // String matches regex
}
ready
match()
if ("xxxxxxxxxabcxxxxxxabcxx".match("a") && "xxxxxxxxxabcxxxxxxabcxx".match("a")) {
  // String matches regex
}
ready

Revisions

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