var string = "Hello world!";
var regex = /Hello/;
regex.test(string);
string.includes("Hello");
string.match("Hello");
string.replace(regex, 'test')
string.replace('Hello', 'test')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
RegEx.test | |
String.includes | |
String.match | |
String.replace | |
String.replace classic |
Test name | Executions per second |
---|---|
RegEx.test | 5425184.5 Ops/sec |
String.includes | 16879302.0 Ops/sec |
String.match | 3475077.0 Ops/sec |
String.replace | 1453697.4 Ops/sec |
String.replace classic | 9062069.0 Ops/sec |
Overview
MeasureThat.net is a website that allows users to create and run JavaScript microbenchmarks to compare the performance of different approaches for specific tasks.
The benchmark in question tests four approaches for searching or replacing substrings within a string: regex.test
, String.includes
, String.match
, String.replace
(classic), and String.replace
. The goal is to determine which approach is the fastest for this particular task.
Benchmark Definition JSON
The benchmark definition JSON contains information about the test case, including:
string
and regex
)Individual Test Cases
Each test case is represented as an object with two properties:
Benchmark Definition
: The JavaScript code that performs the actual benchmarkingTest Name
: A descriptive name for the testThe four test cases are:
RegEx.test(string);
- uses the built-in test()
method of regular expressions to search for a substring within the string.string.includes("Hello");
- uses the includes()
method to check if a substring exists within the string.string.match("Hello");
- uses the match()
method to find all occurrences of a substring within the string.string.replace(regex, 'test')
- uses the replace()
method with a regular expression to replace substrings within the string.string.replace('Hello', 'test')
- uses the replace()
method with a literal substring to replace specific characters within the string.Options Compared
The four test cases compare different approaches for searching or replacing substrings:
includes()
method, which is optimized for substring searches but may not be as accurate as test()
.match()
method, which finds all occurrences of a substring within the string.replace()
method with a literal substring, which can be less efficient than using regular expressions.Pros and Cons
Here are some pros and cons for each approach:
test()
or match()
replace()
with regular expressionsLibrary Used
None of the test cases rely on a specific library, other than the built-in JavaScript methods (test()
, includes()
, match()
, and replace()
).
Special JS Features/Syntax
The benchmark does not use any special JavaScript features or syntax that are not widely supported. The focus is on comparing different approaches for searching and replacing substrings within a string.
Other Alternatives
If you want to compare other approaches for searching or replacing substrings, here are some alternatives:
String.prototype.replace()
instead of the built-in replace()
method.string.includes()
function.