当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。