gpt4 book ai didi

javascript - 如何在 JavaScript 中执行 str_replace,替换 JavaScript 中的文本?

转载 作者:IT王子 更新时间:2023-10-29 02:37:50 27 4
gpt4 key购买 nike

我想使用 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

If you are going to regex, what are the performance implications incomparison to the built in replacement methods.

最佳答案

您将使用 replace 方法:

text = text.replace('old', 'new');

显然,第一个参数就是您要查找的内容。它还可以接受正则表达式。

请记住,它不会更改原始字符串。它只返回新值。

关于javascript - 如何在 JavaScript 中执行 str_replace,替换 JavaScript 中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5519368/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com