javascript / latest / errors / bad_regexp_flag.html /

SyntaxError: invalid regular expression flag "x"

The JavaScript exception "invalid regular expression flag" occurs when the flags in a regular expression contain any flag that is not one of: g, i, m, s, u, y or d.

It may also be raised if the expression contains more than one instance of a valid flag.

Message

SyntaxError: Syntax error in regular expression (Edge)
SyntaxError: invalid regular expression flag "x" (Firefox)
SyntaxError: Invalid regular expression flags (Chrome)

Error type

What went wrong?

The regular expression contains invalid flags, or valid flags have been used more than once in the expression.

The valid (allowed) flags are listed in Regular expressions > Advanced searching with flags, and reproduced below:

Flag Description
g Global search. See global
i Case-insensitive search. See ignoreCase.
m Multi-line search. See multiline.
s Allow . to match newlines (added in ECMAScript 2018). See dotAll.
u Unicode; treat pattern as a sequence of Unicode code points. See unicode.
y Perform a "sticky" search that matches starting at the current position in the target string. See sticky
d Indices. Generate indices for substring matches. See hasIndices

Examples

In a regular expression literal, which consists of a pattern enclosed between slashes, the flags are defined after the second slash. Regular expression flags can be used separately or together in any order. This syntax shows how to declare the flags using the regular expression literal:

const re = /pattern/flags;

They can also be defined in the constructor function of the RegExp object (second parameter):

const re = new RegExp('pattern', 'flags');

Here is an example showing use of only correct flags.

/foo/g;
/foo/gims;
/foo/uy;

Below is an example showing the use of some invalid flags b, a and r:

/foo/bar;

// SyntaxError: invalid regular expression flag "b"

The code below is incorrect, because W, e and b are not valid flags.

let obj = {
  url: /docs/Web
};

// SyntaxError: invalid regular expression flag "W"

An expression containing two slashes is interpreted as a regular expression literal. Most likely the intent was to create a string literal, using single or double quotes as shown below:

let obj = {
  url: '/docs/Web'
};

See also

© 2005–2022 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Bad_regexp_flag