prefer-regex-literals
Disallow use of the RegExp
constructor in favor of regular expression literals
Some problems reported by this rule are manually fixable by editor suggestions
There are two ways to create a regular expression:
- Regular expression literals, e.g.,
/abc/u
. - The
RegExp
constructor function, e.g.,new RegExp("abc", "u")
orRegExp("abc", "u")
.
The constructor function is particularly useful when you want to dynamically generate the pattern, because it takes string arguments.
When using the constructor function with string literals, don’t forget that the string escaping rules still apply. If you want to put a backslash in the pattern, you need to escape it in the string literal. Thus, the following are equivalent:
new RegExp("^\\d\\.$");
/^\d\.$/;
// matches "0.", "1.", "2." ... "9."
In the above example, the regular expression literal is easier to read and reason about.
Also, it’s a common mistake to omit the extra \
in the string literal, which would produce a completely different regular expression:
new RegExp("^\d\.$");
// equivalent to /^d.$/, matches "d1", "d2", "da", "db" ...
When a regular expression is known in advance, it is considered a best practice to avoid the string literal notation on top of the regular expression notation, and use regular expression literals instead of the constructor function.
Rule Details
This rule disallows the use of the RegExp
constructor function with string literals as its arguments.
This rule also disallows the use of the RegExp
constructor function with template literals without expressions
and String.raw
tagged template literals without expressions.
The rule does not disallow all use of the RegExp
constructor. It should be still used for
dynamically generated regular expressions.
Examples of incorrect code for this rule:
/*eslint prefer-regex-literals: "error"*/
;
;
;
;
;
;
;
Examples of correct code for this rule:
/*eslint prefer-regex-literals: "error"*/
/abc/;
/abc/u;
/\d\d\.\d\d\.\d\d\d\d/;
/^\d\.$/;
// RegExp constructor is allowed for dynamically generated regular expressions
new RegExp(pattern);
RegExp("abc", flags);
new RegExp(prefix + "abc");
RegExp(`${prefix}abc`);
new RegExp(String.raw`^\d\. ${suffix}`);
Options
This rule has an object option:
disallowRedundantWrapping
set totrue
additionally checks for unnecessarily wrapped regex literals (Defaultfalse
).
disallowRedundantWrapping
By default, this rule doesn’t check when a regex literal is unnecessarily wrapped in a RegExp
constructor call. When the option disallowRedundantWrapping
is set to true
, the rule will also disallow such unnecessary patterns.
Examples of incorrect
code for { "disallowRedundantWrapping": true }
/*eslint prefer-regex-literals: ["error", {"disallowRedundantWrapping": true}]*/
;
;
Examples of correct
code for { "disallowRedundantWrapping": true }
/*eslint prefer-regex-literals: ["error", {"disallowRedundantWrapping": true}]*/
/abc/;
/abc/u;
new RegExp(/abc/, flags);
Version
This rule was introduced in ESLint v6.4.0.