string.replace()是JavaScript中的內置函數,用於將給定字符串的一部分替換為另一個字符串或正則表達式。原始字符串將保持不變。
用法:
str.replace(A, B)
參數:在這裏,參數A是正則表達式,而參數B是將替換給定字符串內容的字符串。
返回值:它返回帶有替換項目的新字符串。
代碼1:
在這裏,字符串GeeksForGeeks的內容將替換為gfg。
<script>
// Assigning a string
var string = 'GeeksForGeeks is a CS portal';
// Calling replace() function
var newstring = string.replace(/GeeksForGeeks/, 'gfg');
// Printing replaced string
document.write(newstring);
</script>
輸出:
gfg is a CS portal
代碼2:
<script>
// Taking a regular expression
var re = /GeeksForGeeks/;
// Taking a string as input
var string = 'GeeksForGeeks is a CS portal';
// Calling replace() function to replace
// GeeksForGeeks from string with gfg
var newstring = string.replace(re, 'gfg');
// Printing new string with replaced items
document.write(newstring);
</script>
輸出:
gfg is a CS portal
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | string.replace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。