String.prototype.replaceAll()
 The replaceAll() method returns a new string with all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match. 
The original string is left unchanged.
Syntax
replaceAll(regexp, newSubstr) replaceAll(regexp, replacerFunction) replaceAll(substr, newSubstr) replaceAll(substr, replacerFunction)
 Note: When using a `regexp` you have to set the global ("g") flag; otherwise, it will throw a TypeError: "replaceAll must be called with a global RegExp". 
Parameters
- 
regexp(pattern)
-  A RegExpobject or literal with the global flag. The matches are replaced withnewSubstror the value returned by the specifiedreplacerFunction. A RegExp without the global ("g") flag will throw aTypeError: "replaceAll must be called with a global RegExp".
- substr
-  A Stringthat is to be replaced bynewSubstr. It is treated as a literal string and is not interpreted as a regular expression.
- 
newSubstr(replacement)
-  The Stringthat replaces the substring specified by the specifiedregexporsubstrparameter. A number of special replacement patterns are supported; see the "Specifying a string as a parameter" section below.
- 
replacerFunction(replacement)
-  A function to be invoked to create the new substring to be used to replace the matches to the given regexporsubstr. The arguments supplied to this function are described in the "Specifying a function as a parameter" section below.
Return value
A new string, with all matches of a pattern replaced by a replacement.
Description
This method does not change the calling String object. It returns a new string.
Specifying a string as a parameter
The replacement string can include the following special replacement patterns:
| Pattern | Inserts | 
|---|---|
| $$ | Inserts a "$". | 
| $& | Inserts the matched substring. | 
| $` | Inserts the portion of the string that precedes the matched substring. | 
| $' | Inserts the portion of the string that follows the matched substring. | 
| $n | Where nis a positive integer less than 100, inserts thenth parenthesized submatch string, provided the first argument was aRegExpobject. Note that this is1-indexed. | 
Specifying a function as a parameter
You can specify a function as the second parameter. In this case, the function will be invoked after the match has been performed. The function's result (return value) will be used as the replacement string. (Note: The above-mentioned special replacement patterns do not apply in this case.)
Note that if the first argument of an replaceAll() invocation is a RegExp object or regular expression literal, the function will be invoked multiple times.
The arguments to the function are as follows:
| Possible name | Supplied value | 
|---|---|
| match | The matched substring. (Corresponds to $&above.) | 
| p1, p2, ... | The nth string found by a parenthesized capture group, provided the first argument to replaceAll()was aRegExpobject. (Corresponds to$1,$2, etc. above.) For example, if/(\a+)(\b+)/, was given,p1is the match for\a+, andp2for\b+. | 
| offset | The offset of the matched substring within the whole string being examined. (For example, if the whole string was 'abcd', and the matched substring was'bc', then this argument will be1.) | 
| string | The whole string being examined. | 
 (The exact number of arguments depends on whether the first argument is a RegExp object—and, if so, how many parenthesized submatches it specifies.) 
Examples
Using replaceAll
'aabbcc'.replaceAll('b', '.'); // 'aa..cc'
Non-global regex throws
When using a regular expression search value, it must be global. This won't work:
'aabbcc'.replaceAll(/b/, '.'); TypeError: replaceAll must be called with a global RegExp
This will work:
'aabbcc'.replaceAll(/b/g, '.'); "aa..cc"
Specifications
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
| replaceAll | 85 | 85 | 77 | No | 71 | 13.1 | 85 | 85 | 79 | 60 | 13.4 | 14.0 | 
See also
- A polyfill of String.prototype.replaceAllis available incore-js
- String.prototype.replace()
- String.prototype.match()
- RegExp.prototype.exec()
- RegExp.prototype.test()
    © 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replaceAll