RegExp
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
TheRegExp object is used for matching text with a pattern.
For an introduction to regular expressions, read theRegular expressions chapter in the JavaScript guide. For detailed information of regular expression syntax, read theregular expression reference.
In this article
Description
>Literal notation and constructor
There are two ways to create aRegExp object: aliteral notation and aconstructor.
- Theliteral notation takes a pattern between two slashes, followed by optionalflags, after the second slash.
- Theconstructor function takes either a string or a
RegExpobject as its first parameter and a string of optionalflags as its second parameter.
The following three expressions create the same regular expression object:
const re = /ab+c/i; // literal notation// ORconst re = new RegExp("ab+c", "i"); // constructor with string pattern as first argument// ORconst re = new RegExp(/ab+c/, "i"); // constructor with regular expression literal as first argumentBefore regular expressions can be used, they have to be compiled. This process allows them to perform matches more efficiently. More about the process can be found indotnet docs.
The literal notation results in compilation of the regular expression when the expression is evaluated. On the other hand, the constructor of theRegExp object,new RegExp('ab+c'), results in runtime compilation of the regular expression.
Use a string as the first argument to theRegExp() constructor when you want tobuild the regular expression from dynamic input.
Flags in constructor
The expressionnew RegExp(/ab+c/, flags) will create a newRegExp using the source of the first parameter and theflags provided by the second.
When using the constructor function, the normal string escape rules (preceding special characters with\ when included in a string) are necessary.
For example, the following are equivalent:
const re = /\w+/;// ORconst re = new RegExp("\\w+");Special handling for regexes
Note:Whether something is a "regex" can beduck-typed. It doesn't have to be aRegExp!
Some built-in methods would treat regexes specially. They decide whetherx is a regex throughmultiple steps:
xmust be an object (not a primitive).- If
x[Symbol.match]is notundefined, check if it'struthy. - Otherwise, if
x[Symbol.match]isundefined, check ifxhad been created with theRegExpconstructor. (This step should rarely happen, since ifxis aRegExpobject that have not been tampered with, it should have aSymbol.matchproperty.)
Note that in most cases, it would go through theSymbol.match check, which means:
- An actual
RegExpobject whoseSymbol.matchproperty's value isfalsy but notundefined(even with everything else intact, likeexecand[Symbol.replace]()) can be used as if it's not a regex. - A non-
RegExpobject with aSymbol.matchproperty will be treated as if it's a regex.
This choice was made because[Symbol.match]() is the most indicative property that something is intended to be used for matching. (exec could also be used, but because it's not a symbol property, there would be too many false positives.) The places that treat regexes specially include:
String.prototype.endsWith(),startsWith(), andincludes()throw aTypeErrorif the first argument is a regex.String.prototype.matchAll()andreplaceAll()check whether theglobal flag is set if the first argument is a regex before invoking its[Symbol.matchAll]()or[Symbol.replace]()method.- The
RegExp()constructor directly returns thepatternargument only ifpatternis a regex (among a few other conditions). Ifpatternis a regex, it would also interrogatepattern'ssourceandflagsproperties instead of coercingpatternto a string.
For example,String.prototype.endsWith() would coerce all inputs to strings, but it would throw if the argument is a regex, because it's only designed to match strings, and using a regex is likely a developer mistake.
"foobar".endsWith({ toString: () => "bar" }); // true"foobar".endsWith(/bar/); // TypeError: First argument to String.prototype.endsWith must not be a regular expressionYou can get around the check by setting[Symbol.match] to afalsy value that's notundefined. This would mean that the regex cannot be used forString.prototype.match() (since without[Symbol.match],match() would construct a newRegExp object with the two enclosing slashes added byre.toString()), but it can be used for virtually everything else.
const re = /bar/g;re[Symbol.match] = false;"/bar/g".endsWith(re); // truere.exec("bar"); // [ 'bar', index: 0, input: 'bar', groups: undefined ]"bar & bar".replace(re, "foo"); // 'foo & foo'Perl-like RegExp properties
Note that several of theRegExp properties have both long and short (Perl-like) names. Both names always refer to the same value. (Perl is the programming language from which JavaScript modeled its regular expressions.) See alsodeprecatedRegExp properties.
Constructor
RegExp()Creates a new
RegExpobject.
Static properties
RegExp.$1, …,RegExp.$9DeprecatedStatic read-only properties that contain parenthesized substring matches.
RegExp.input($_)DeprecatedA static property that contains the last string against which a regular expression was successfully matched.
RegExp.lastMatch($&)DeprecatedA static read-only property that contains the last matched substring.
RegExp.lastParen($+)DeprecatedA static read-only property that contains the last parenthesized substring match.
RegExp.leftContext($`)DeprecatedA static read-only property that contains the substring preceding the most recent match.
RegExp.rightContext($')DeprecatedA static read-only property that contains the substring following the most recent match.
RegExp[Symbol.species]The constructor function that is used to create derived objects.
Static methods
RegExp.escape()Escapes any potential regex syntax characters in a string, and returns a new string that can be safely used as aliteral pattern for the
RegExp()constructor.
Instance properties
These properties are defined onRegExp.prototype and shared by allRegExp instances.
RegExp.prototype.constructorThe constructor function that created the instance object. For
RegExpinstances, the initial value is theRegExpconstructor.RegExp.prototype.dotAllWhether
.matches newlines or not.RegExp.prototype.flagsA string that contains the flags of the
RegExpobject.RegExp.prototype.globalWhether to test the regular expression against all possible matches in a string, or only against the first.
RegExp.prototype.hasIndicesWhether the regular expression result exposes the start and end indices of captured substrings.
RegExp.prototype.ignoreCaseWhether to ignore case while attempting a match in a string.
RegExp.prototype.multilineWhether or not to search in strings across multiple lines.
RegExp.prototype.sourceThe text of the pattern.
RegExp.prototype.stickyWhether or not the search is sticky.
RegExp.prototype.unicodeWhether or not Unicode features are enabled.
RegExp.prototype.unicodeSetsWhether or not the
vflag, an upgrade to theumode, is enabled.
These properties are own properties of eachRegExp instance.
lastIndexThe index at which to start the next match.
Instance methods
RegExp.prototype.compile()Deprecated(Re-)compiles a regular expression during execution of a script.
RegExp.prototype.exec()Executes a search for a match in its string parameter.
RegExp.prototype.test()Tests for a match in its string parameter.
RegExp.prototype.toString()Returns a string representing the specified object. Overrides the
Object.prototype.toString()method.RegExp.prototype[Symbol.match]()Performs match to given string and returns match result.
RegExp.prototype[Symbol.matchAll]()Returns all matches of the regular expression against a string.
RegExp.prototype[Symbol.replace]()Replaces matches in given string with new substring.
RegExp.prototype[Symbol.search]()Searches the match in given string and returns the index the pattern found in the string.
RegExp.prototype[Symbol.split]()Splits given string into an array by separating the string into substrings.
Examples
>Using a regular expression to change data format
The following script uses theString.prototype.replace() method to match a name in the formatfirst last and output it in the formatlast, first.
In the replacement text, the script uses$1 and$2 to indicate the results of the corresponding matching parentheses in the regular expression pattern.
const re = /(\w+)\s(\w+)/;const str = "Maria Cruz";const newStr = str.replace(re, "$2, $1");console.log(newStr);This displays"Cruz, Maria".
Using regular expression to split lines with different line endings/ends of line/line breaks
The default line ending varies depending on the platform (Unix, Windows, etc.). The line splitting provided in this example works on all platforms.
const text = "Some text\nAnd some more\r\nAnd yet\nThis is the end";const lines = text.split(/\r?\n/);console.log(lines); // [ 'Some text', 'And some more', 'And yet', 'This is the end' ]Note that the order of the patterns in the regular expression matters.
Using regular expression on multiple lines
By default, the. character does not match newlines. To make it match newlines, use thes flag (dotAll mode).
const s = "Please yes\nmake my day!";s.match(/yes.*day/);// Returns nulls.match(/yes.*day/s);// Returns ["yes\nmake my day"]Using a regular expression with the sticky flag
Thesticky flag indicates that the regular expression performs sticky matching in the target string by attempting to match starting atRegExp.prototype.lastIndex.
const str = "#foo#";const regex = /foo/y;regex.lastIndex = 1;regex.test(str); // trueregex.lastIndex = 5;regex.test(str); // false (lastIndex is taken into account with sticky flag)regex.lastIndex; // 0 (reset after match failure)The difference between the sticky flag and the global flag
With the sticky flagy, the next match has to happen at thelastIndex position, while with the global flagg, the match can happen at thelastIndex position or later:
const re = /\d/y;let r;while ((r = re.exec("123 456"))) { console.log(r, "AND re.lastIndex", re.lastIndex);}// [ '1', index: 0, input: '123 456', groups: undefined ] AND re.lastIndex 1// [ '2', index: 1, input: '123 456', groups: undefined ] AND re.lastIndex 2// [ '3', index: 2, input: '123 456', groups: undefined ] AND re.lastIndex 3// … and no more match.With the global flagg, all 6 digits would be matched, not just 3.
Regular expression and Unicode characters
\w and\W only matches ASCII based characters; for example,a toz,A toZ,0 to9, and_.
To match characters from other languages such as Cyrillic or Hebrew, use\uHHHH, whereHHHH is the character's Unicode value in hexadecimal.
This example demonstrates how one can separate out Unicode characters from a word.
const text = "Образец text на русском языке";const regex = /[\u0400-\u04ff]+/g;const match = regex.exec(text);console.log(match[0]); // 'Образец'console.log(regex.lastIndex); // 7const match2 = regex.exec(text);console.log(match2[0]); // 'на' (did not log 'text')console.log(regex.lastIndex); // 15// and so onTheUnicode property escapes feature provides a simpler way to target particular Unicode ranges, by allowing for statements like\p{scx=Cyrl} (to match any Cyrillic letter), or\p{L}/u (to match a letter from any language).
Extracting subdomain name from URL
const url = "http://xxx.example.com";console.log(/^https?:\/\/(.+?)\./.exec(url)[1]); // 'xxx'Note:Instead of using regular expressions for parsing URLs, it is usually better to use the browsers built-in URL parser by using theURL API.
Building a regular expression from dynamic inputs
const breakfasts = ["bacon", "eggs", "oatmeal", "toast", "cereal"];const order = "Let me get some bacon and eggs, please";order.match(new RegExp(`\\b(${breakfasts.join("|")})\\b`, "g"));// Returns ['bacon', 'eggs']Specifications
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-regexp-regular-expression-objects> |
Browser compatibility
Firefox-specific notes
Starting with Firefox 34, in the case of a capturing group with quantifiers preventing its exercise, the matched text for a capturing group is nowundefined instead of an empty string:
// Firefox 33 or older"x".replace(/x(.)?/g, (m, group) => { console.log(`group: ${JSON.stringify(group)}`);});// group: ""// Firefox 34 or newer"x".replace(/x(.)?/g, (m, group) => { console.log(`group: ${group}`);});// group: undefinedNote that due to web compatibility,RegExp.$N will still return an empty string instead ofundefined (bug 1053944).