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


JavaScript String replace()用法及代碼示例


字符串 replace() 方法

replace() 方法是一個字符串方法,用於將字符串的給定部分替換為另一個給定字符串並返回新字符串。

用法:

    new_string = str.replace(find, replace);

這裏,

  • str是我們必須執行替換的主要字符串。
  • find是字符串中要替換的子字符串。
  • replace是要替換的子串。
  • new_string是替換後的重新調整的字符串findreplace

例子:

    Input:
    str = "Hello world!"
    find = "Hello"
    replace = "Hi"
    Output:
    "Hi world!"

碼:

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
<script>		
	var main_str = "Hello world!";
	var find = "Hello";
	var replace = "Hi";
	//calling the function
	var new_str = main_str.replace(find, replace);
	document.write("string before replacement:" + main_str + "<br>");
	document.write("string after replacement:" + new_str + "<br>");
</script>
</body>
</html>

輸出

string before replacement:Hello world!
string after replacement:Hi world!



相關用法


注:本文由純淨天空篩選整理自 String replace() Method with Example in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。