var loremString = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
var unneededNonCaptureRE = /(?:z)+/
var noNonCaptureRE = /z+/
var anotherUnneededNonCapture = /lab(?:o)rum/
var anotherNoNonCapture = /laborum/
unneededNonCaptureRE.exec(loremString)
noNonCaptureRE.exec(loremString)
anotherUnneededNonCapture.exec(loremString)
anotherNoNonCapture.exec(loremString)
loremString.indexOf('laborum')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
unneededNonCaptureRE | |
noNonCaptureRE | |
anotherUnneededNonCapture | |
anotherNoNonCapture | |
indexOf |
Test name | Executions per second |
---|---|
unneededNonCaptureRE | 2384496.2 Ops/sec |
noNonCaptureRE | 2380136.8 Ops/sec |
anotherUnneededNonCapture | 3488588.2 Ops/sec |
anotherNoNonCapture | 2545632.2 Ops/sec |
indexOf | 12354694.0 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
The benchmark being tested is the performance difference between using parentheses in regular expressions and not using them, as discussed in this Stack Overflow question: https://stackoverflow.com/questions/45291700/javascript-regex-non-capture-faster-than-no-parenthesis-at-all
In essence, the test cases are comparing the execution speed of different regex patterns that match a specific string. The variations are:
unneededNonCaptureRE
: /(?:z)+/
(non-capturing group)noNonCaptureRE
: /z+/\
(no non-capturing group)anotherUnNeededNonCapture
: /lab(?:o)rum/
(another variation with a non-capturing group)anotherNoNonCapture
: /laborum/
(no non-capturing group)indexOf
: loremString.indexOf('laborum')
Let's break down the pros and cons of each approach:
Non-capturing groups (?:
)
Pros:
Cons:
RegExp.prototype.exec()
).No non-capturing group (z+
)
Pros:
Cons:
Simple string matching (indexOf
)
Pros:
Cons:
Now, let's discuss the libraries used in this benchmark:
None. This is a basic JavaScript microbenchmark.
No special JS features or syntax are used in this benchmark. The tests only rely on standard JavaScript features and the RegExp
class.
As for alternatives, here are some other ways to measure performance differences in JavaScript regex patterns:
In summary, this benchmark on MeasureThat.net is a simple yet informative test that highlights the performance differences between using parentheses in regular expressions and not using them. By understanding the pros and cons of each approach, developers can make informed decisions about how to optimize their regex patterns for better performance.