--- title: String.prototype.replace() slug: Web/JavaScript/Reference/Global_Objects/String/replace translation_of: Web/JavaScript/Reference/Global_Objects/String/replace ---
replace()
方法會傳回一個新字串,此新字串是透過將原字串與 pattern
比對,以 replacement
取代吻合處而生成。pattern
可以是字串或 {{jsxref("RegExp")}},而 replacement
可以是字串或函式(會在每一次匹配時被呼叫)。
備註:原始的字串會保持不變。
str.replace(regexp|substr, newSubstr|function)
regexp
(pattern)newSubStr
或是取代為 function
的回傳值。substr
(pattern)newSubStr
取代的 {{jsxref("String")}}。它被視為逐字字符串,並且不會被解釋為正則表達式。只會替換第一次出現。newSubStr
(replacement)regexp
or substr
parameter. A number of special replacement patterns are supported; see the "Specifying a string as a parameter" section below.function
(replacement)regexp
or substr
. The arguments supplied to this function are described in the "Specifying a function as a parameter" section below.A new string with some or all matches of a pattern replaced by a replacement.
這個方法不會變更所呼叫的 {{jsxref("String")}}。它只會回傳新的字串。
To perform a global search and replace, include the g
switch in the regular expression.
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 n is a positive integer less than 100, inserts the nth parenthesized submatch string, provided the first argument was a {{jsxref("RegExp")}} object. |
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 the function will be invoked multiple times for each full match to be replaced if the regular expression in the first parameter is global.
The arguments to the function are as follows:
Possible name | Supplied value |
match |
The matched substring. (Corresponds to $& above.) |
p1, p2, ... |
The nth parenthesized submatch string, provided the first argument to replace() was a {{jsxref("RegExp")}} object. (Corresponds to $1 , $2 , etc. above.) For example, if /(\a+)(\b+)/ , was given, p1 is the match for \a+ , and p2 for \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 be 1.) |
string |
The whole string being examined. |
(The exact number of arguments will depend on whether the first argument was a {{jsxref("RegExp")}} object and, if so, how many parenthesized submatches it specifies.)
The following example will set newString
to 'abc - 12345 - #$*%'
:
function replacer(match, p1, p2, p3, offset, string) { // p1 is nondigits, p2 digits, and p3 non-alphanumerics return [p1, p2, p3].join(' - '); } var newString = 'abc12345#$*%'.replace(/([^\d]*)(\d*)([^\w]*)/, replacer); console.log(newString); // abc - 12345 - #$*%
replace()
中定義正則表示式下例的正規表達式被定義為 replace()
、並包含了忽略大小寫的 flag。
var str = 'Twas the night before Xmas...'; var newstr = str.replace(/xmas/i, 'Christmas'); console.log(newstr); // Twas the night before Christmas...
上例會顯示「Twas the night before Christmas...」
global
及 ignore
來配合 replace()
Global replace can only be done with a regular expression. In the following example, the regular expression includes the global and ignore case flags which permits replace()
to replace each occurrence of 'apples' in the string with 'oranges'.
var re = /apples/gi; var str = 'Apples are round, and apples are juicy.'; var newstr = str.replace(re, 'oranges'); console.log(newstr); // oranges are round, and oranges are juicy.
上例會顯示「oranges are round, and oranges are juicy」。
下例程式將切換字串內的單字。對 replacement text 而言,程式會使用 $1
and $2
的 replacement pattern。
var re = /(\w+)\s(\w+)/; var str = 'John Smith'; var newstr = str.replace(re, '$2, $1'); console.log(newstr); // Smith, John
上例會顯示「Smith, John」。
In this example, all occurrences of capital letters in the string are converted to lower case, and a hyphen is inserted just before the match location. The important thing here is that additional operations are needed on the matched item before it is given back as a replacement.
The replacement function accepts the matched snippet as its parameter, and uses it to transform the case and concatenate the hyphen before returning.
function styleHyphenFormat(propertyName) { function upperToHyphenLower(match, offset, string) { return (offset ? '-' : '') + match.toLowerCase(); } return propertyName.replace(/[A-Z]/g, upperToHyphenLower); }
Given styleHyphenFormat('borderTop')
, this returns 'border-top'.
Because we want to further transform the result of the match before the final substitution is made, we must use a function. This forces the evaluation of the match prior to the {{jsxref("String.prototype.toLowerCase()", "toLowerCase()")}} method. If we had tried to do this using the match without a function, the {{jsxref("String.prototype.toLowerCase()", "toLowerCase()")}} would have no effect.
var newString = propertyName.replace(/[A-Z]/g, '-' + '$&'.toLowerCase()); // won't work
This is because '$&'.toLowerCase()
would be evaluated first as a string literal (resulting in the same '$&'
) before using the characters as a pattern.
The following example replaces a Fahrenheit degree with its equivalent Celsius degree. The Fahrenheit degree should be a number ending with F. The function returns the Celsius number ending with C. For example, if the input number is 212F, the function returns 100C. If the number is 0F, the function returns -17.77777777777778C.
The regular expression test
checks for any number that ends with F. The number of Fahrenheit degree is accessible to the function through its second parameter, p1
. The function sets the Celsius number based on the Fahrenheit degree passed in a string to the f2c()
function. f2c()
then returns the Celsius number. This function approximates Perl's s///e
flag.
function f2c(x) { function convert(str, p1, offset, s) { return ((p1 - 32) * 5/9) + 'C'; } var s = String(x); var test = /(-?\d+(?:\.\d*)?)F\b/g; return s.replace(test, convert); }
for
迴圈The following example takes a string pattern and converts it into an array of objects.
Input:
A string made out of the characters x
, -
and _
x-x_ x---x---x---x--- x-xxx-xx-x- x_x_x___x___x___
Output:
An array of objects. An 'x'
denotes an 'on'
state, a '-'
(hyphen) denotes an 'off'
state and an '_'
(underscore) denotes the length of an 'on'
state.
[ { on: true, length: 1 }, { on: false, length: 1 }, { on: true, length: 2 } ... ]
Snippet:
var str = 'x-x_'; var retArr = []; str.replace(/(x_*)|(-)/g, function(match, p1, p2) { if (p1) { retArr.push({ on: true, length: p1.length }); } if (p2) { retArr.push({ on: false, length: 1 }); } }); console.log(retArr);
This snippet generates an array of 3 objects in the desired format without using a for
loop.
規範 | 狀態 | 註解 |
---|---|---|
{{SpecName('ES3')}} | {{Spec2('ES3')}} | Initial definition. Implemented in JavaScript 1.2. |
{{SpecName('ES5.1', '#sec-15.5.4.11', 'String.prototype.replace')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-string.prototype.replace', 'String.prototype.replace')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-string.prototype.replace', 'String.prototype.replace')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.builtins.String.replace")}}
replace()
is called with a global regular expression, the {{jsxref("RegExp.lastIndex")}} property (if specified) will be reset to 0
({{bug(501739)}}).flags
argument is deprecated and throws a console warning ({{bug(1142351)}}).flags
argument is no longer supported in non-release builds and will soon be removed entirely ({{bug(1245801)}}).flags
argument is no longer supported ({{bug(1108382)}}).