📌  相关文章
📜  如何在javascript代码示例中从字符串中替换单词

📅  最后修改于: 2022-03-11 15:03:58.493000             🧑  作者: Mango

代码示例1
var str = "Please locate where 'locate' occurs!";

str.replace("locate", "W3Schools"); //replace only replace first match from string
str.replace(/LOCATE/i, "W3Schools"); // i makes it case insensitive
str.replace(/LOCATE/g, "W3Schools"); // g replace all matches from string rather than replacing only first

document.write("
" + "replace:", res7); document.write("
" + "replace with case insensitive:", res8); document.write("
" + "replace all:", res9);