var string = "W0rLd Hello world!";
var regex = /Hello/;
regex.test(string);
string.includes("Hello");
string.match("Hello");
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
RegEx.test | |
String.includes | |
String.match |
Test name | Executions per second |
---|---|
RegEx.test | 6512453.0 Ops/sec |
String.includes | 16564108.0 Ops/sec |
String.match | 3718031.0 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, along with the pros and cons of each approach.
Benchmark Overview
The benchmark compares three different methods to search for a substring within a string: RegEx.test()
, String.includes()
, and String.match()
(specifically version 2). The test case uses a predefined JavaScript script that creates a string variable string
with the content "W0rLd Hello world!" and a regular expression variable regex
with the pattern "/Hello/".
Method Overview
The RegEx.test()
method tests if the string matches the regular expression. It returns true
if there's a match, or false
otherwise.
Pros:
Cons:
The String.includes()
method checks if the string contains the specified value. It returns true
if found, or false
otherwise.
Pros:
Cons:
The String.match()
method returns an array of matches if the string matches the regular expression. If no match is found, it returns null
.
Pros:
Cons:
Library Used
None of the methods listed above rely on a specific library. However, if you're using a modern JavaScript environment, it's likely that String.includes()
is optimized and provided by the browser (e.g., Chrome).
Special JS Features/Syntax
The benchmark doesn't use any special JavaScript features or syntax, other than the regular expression engine.
Other Alternatives
If you needed to search for a substring within a string in JavaScript, some alternative approaches could include:
String.indexOf()
instead of String.includes()
String.prototype.replace()
with a callback functionKeep in mind that the performance and efficiency of these alternatives may vary depending on the specific use case.
Benchmark Results Interpretation
The benchmark results show the execution per second (in executions/s) for each method, measured by Chrome 105 on a Windows desktop. The highest execution rate is achieved by String.includes()
, followed closely by RegEx.test()
.