-1

我对字符串的 REPLACE 方法有疑问。我有一个字符串女巫包含 1 或 2 或...相同的字符串,我想将它们全部替换为一件事,但替换方法不起作用,请遵循以下步骤:

var a = "hihi";
b = a.replace("hi","hello");
alert(b);

它应该提醒 hellohello 但它会提醒 hellohi 。

请帮忙 。谢谢 。

4

1 回答 1

2

使用带有全局g集的正则表达式来替换字符串中的所有匹配项。

var string = 'hihi';
var result = string.replace(/hi/g, 'hello');
alert(result); // 'hellohello'
于 2013-11-14T13:30:39.167 回答