當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript string.replace()用法及代碼示例


下麵是字符串的示例。replace()方法。

  • Example:
    
    <script> 
        var string = 'GeeksForGeeks'; 
        var newstring = string.replace(/GeeksForGeeks/, 'GfG'); 
      
        document.write(newstring); 
    </script> 
  • Output:
    GfG

string.replace()是JavaScript中的內置方法,用於將給定字符串的一部分替換為另一個字符串或正則表達式。原始字符串將保持不變。

用法:

str.replace(A, B)

參數:這裏的參數A是正則表達式,參數B是將替換給定字符串內容的字符串。

返回值:它返回帶有替換項目的新字符串。



JavaScript代碼顯示此方法的用法原理:

代碼1:
在這裏,字符串GeeksForGeeks的內容將替換為gfg。

<script>
  
    // Assigning a string
    var string = 'GeeksForGeeks is a CS portal';
  
// Calling replace() method
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() method 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

支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript string.replace() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。