Regex Performance Testing
JavaScript performance comparison
Info
How much faster is a precompiled regex vs a non-precompiled regex?
Preparation code
<script>
Benchmark.prototype.setup = function() {
var preCompiledReplaceRegex = /test/g;
myHtml = "<span>This is a test</span><div>Of a regex</div><p>test</p><em>test</em>";
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Precompiled Regex (Replace) |
|
pending… |
Non-Precompiled Regex (Replace) |
|
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 by Levi Hackwith
- Revision 2: published by Levi Hackwith
0 comments