问题:
当使用 JavaScript 内置的 Replace( ) 方法来替换子字符串,仅替换第一个出现的子字符串,如以下示例所示:
<code class="javascript">var string = "Test abc test test abc test test test abc test test abc"; string = string.replace('abc', ''); // Only replaces the first 'abc' occurrence</code>
我们如何替换 JavaScript 中所有出现的子字符串?
解决方案:
现代浏览器:
现代浏览器支持 String.replaceAll() 方法,该方法用指定的替换替换所有出现的子字符串:
<code class="javascript">string = string.replaceAll('abc', ''); // Replaces all 'abc' occurrences</code>
自定义函数:
对于旧版或旧版浏览器对于不支持 String.replaceAll() 的浏览器,我们可以使用自定义函数:
<code class="javascript">function replaceAll(str, find, replace) { return str.replace(new RegExp(escapeRegExp(find), 'g'), replace); } function escapeRegExp(str) { return str.replace(/[.*+?^${}()|[\]\]/g, '\$&'); }</code>
用法:
<code class="javascript">console.log(replaceAll(string, 'abc', '')); // Replaces all 'abc' occurrences</code>
注意:
以上是如何在 JavaScript 中替换特定字符串的所有实例?的详细内容。更多信息请关注PHP中文网其他相关文章!