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

Revision 33 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/.exec("devepoter.com.tw") !== null) {
 // String matches regex
}
ready
match()
if ("devepoter.com.tw".match(/devepoter.com.tw/) !== null) {
 // String matches regex
}
ready
test()
if (/devepoter.com.tw/.test("devepoter.com.tw") !== false) {
 // String matches regex
}
ready
search()
if ("skdghrp_hub__".search('rp_hub') !== -1) {
 // String matches regex
}
ready
indexOf()
if ("skdghrp_hub__".indexOf('rp_hub') !== -1) {
 // String matches regex
}
ready

Revisions

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