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

Revision 17 of this benchmark created on


Description

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

Setup

var abcRegex = /abc/;
    String.prototype.test = function(re){ return re.test(this); };
    String.prototype.test2 = function(re){ return this.search(re)>=0; };

Test runner

Ready to run.

Testing in
TestOps/sec
exec()
if (abcRegex.exec("xxxxxxxxxabcxxxxxxabcxx") !== null) {
 // String matches regex
}
ready
match()
if ("xxxxxxxxxabcxxxxxxabcxx".match(abcRegex) !== null) {
 // String matches regex
}
ready
test()
if (abcRegex.test("xxxxxxxxxabcxxxxxxabcxx") !== false) {
 // String matches regex
}
ready
search()
if ("xxxxxxxxxabcxxxxxxabcxx".search(abcRegex) !== -1) {
 // String matches regex
}
ready
indexOf()
if ("xxxxxxxxxabcxxxxxxabcxx".indexOf("abc") > -1) {
 // String matches regex
}
ready
match() str
if ("xxxxxxxxxabcxxxxxxabcxx".match("abc") ) {
 // String matches regex
}
ready
test(re)
if ("xxxxxxxxxabcxxxxxxabcxx".test(abcRegex)) {
 // String matches regex
}
ready
test2(re)
if ("xxxxxxxxxabcxxxxxxabcxx".test2(abcRegex)) {
 // String matches regex
}
ready
searchtext
if ("xxxxxxxxxabcxxxxxxabcxx".search("abc") !== -1) {
 // String matches regex
}
ready

Revisions

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