时间:2021-07-01 10:21:17 帮助过:3人阅读
该方法找到一个正则表达式的字符串之间的匹配,并取代了匹配的子带的新的子串。
替换字符串可以包含以下特殊替换模式:
语法
string.replace(regexp/substr, newSubStr/function[, flags]);
下面是参数的详细信息:
返回值:
例子:
下面的示例演示了如何使用全球和忽略大小写标志,允许替换,以使用字符串'oranges'取代'apples'
<html> <head> <title>JavaScript String replace() Method</title> </head> <body> <script type="text/javascript"> var re = /apples/gi; var str = "Apples are round, and apples are juicy."; var newstr = str.replace(re, "oranges"); document.write(newstr ); </script> </body> </html>
例子:
下面的例子演示了如何在一个字符串转换的词:
<html> <head> <title>JavaScript String replace() Method</title> </head> <body> <script type="text/javascript"> var re = /(\w+)\s(\w+)/; var str = "zara ali"; var newstr = str.replace(re, "$2, $1"); document.write(newstr); </script> </body> </html>