gpt4 book ai didi

javascript - 用 javascript 进行多次替换

转载 作者:行者123 更新时间:2023-12-03 00:10:57 28 4
gpt4 key购买 nike

在 PHP 中,这样做是为了一次替换多个值。

<?php
$string = "i am the foobar";

$newstring = str_replace(array('i', 'the'), array('you', 'a'), $string);

echo $newstring;
?>

如何在 JavaScript 中做到这一点?

最佳答案

使用javascript的.replace()方法,将多个替换串在一起。即:

var somestring = "foo is an awesome foo bar foo foo"; //somestring lowercase
var replaced = somestring.replace(/foo/g, "bar").replace(/is/g, "or");
// replaced now contains: "bar or an awesome bar bar bar bar"

关于javascript - 用 javascript 进行多次替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3293540/

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