const prepared = /[.*+?^${}()|[\]\\]/g;
const blah = "whatever"
const r = blah.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")
const blah = "whatever"
const r = blah.replace(prepared, "\\$&")
const newOne = /[.*+?^${}()|[\]\\]/g;
const blah = "foo"
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
instantiate new regex | |
use existing regex | |
just make a regex | |
just make a string |
Test name | Executions per second |
---|---|
instantiate new regex | 15960742.0 Ops/sec |
use existing regex | 13052096.0 Ops/sec |
just make a regex | 168466000.0 Ops/sec |
just make a string | 155052112.0 Ops/sec |
The benchmark provided is focused on evaluating the performance of different approaches to using regular expressions (regex) in JavaScript. Regular expressions are sequences of characters that form a search pattern, primarily used for string matching. This benchmark specifically examines the performance regarding regex instantiation and usage.
Just Make a Regex
const newOne = /[.*+?^${}()|[\\]\\\\]/g;
Just Make a String
const blah = "foo";
Instantiate New Regex
const blah = "whatever"; const r = blah.replace(/[.*+?^${}()|[\\]\\\\]/g, "\\$&");
Use Existing Regex
const blah = "whatever"; const r = blah.replace(prepared, "\\$&");
prepared
) rather than instantiating a new regex on each invocation.Just Make a Regex:
Just Make a String:
Instantiate New Regex:
Use Existing Regex:
In this benchmark, the JavaScript Regex engine itself is being utilized, which is a built-in feature of the JavaScript language. No external libraries are involved; thus, this benchmarking purely evaluates the regex capabilities natively provided by the language.
The current benchmark results indicate that simply creating regex patterns or strings can be significantly faster than repeated instantiation or use of regex for replacements. Software engineers should be mindful of performance implications when deciding whether to instantiate a new regex or use an existing one.
Alternatives to the approaches evaluated may include:
.includes()
or .indexOf()
might offer better performance if complex pattern matching is unnecessary.Engineers should choose the appropriate method based on specific performance needs, complexity requirements, and the nature of string manipulation they are implementing.