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

Revision 20 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 (/(abc|def|ghi)/.exec("xxxxxxxxxabcxxxxxxabcxx") !== null) {
 // String matches regex
}
ready
match()
if ("xxxxxxxxxabcxxxxxxabcxx".match(/(abc|def|ghi)/) !== null) {
 // String matches regex
}
ready
test()
if (/(abc|def|ghi)/.test("xxxxxxxxxabcxxxxxxabcxx") !== false) {
 // String matches regex
}
ready
search()
if (("xxxxxxxxxabcxxxxxxabcxx").search(/(abc|def|ghi)/) !== -1) {
 // String matches regex
}
ready
indexOf()
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("abc") !== -1) {
 // String matches regex
}
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("def") !== -1) {
 // String matches regex
}
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("ghi") !== -1) {
 // String matches regex
}
ready

Revisions

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