exec() vs match() vs test() vs search()
JavaScript performance comparison
Info
Tests to determine which function is faster for detecting whether a string matches a regex pattern.
Preparation code
<script>
var regex = /(?:regex)/;
var str = 'This is a regex string.';
</script><script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script><script src="//ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js"></script><script src="//ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js"></script><script src="//ajax.googleapis.com/ajax/libs/yui/2.8.1/build/yuiloader/yuiloader-min.js"></script><script src="//ajax.googleapis.com/ajax/libs/ext-core/3.1.0/ext-core.js"></script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
exec() |
|
pending… |
match() |
|
pending… |
test() |
|
pending… |
search() |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published
- Revision 2: published by shreyas patel
- Revision 5: published by harth
- Revision 7: published
- Revision 9: published
- Revision 10: published
- Revision 11: published
- Revision 12: published by rx.test(str) vs str.search(rx)
- Revision 13: published by rx.test(str) vs str.search(rx)
0 comments