我想使用str_replace
或类似的替代方法来替换 JavaScript 中的某些文本。
var text = "this is some sample text that i want to replace";
var new_text = replace_in_javascript("want", "dont want", text);
document.write(new_text);
应该给
this is some sample text that i dont want to replace
如果您要使用正则表达式,与内置替换方法相比,性能有何影响。