我需要一个 JavaScript 函数,它以一个字符串作为输入,用相应的值替换许多子字符串,然后返回结果。例如:
function findreplace(inputStr) {
const values = {"a": "A",
"B": "x",
"c": "C"};
// In this example, if inputStr is "abc", then outputStr should be "AbC".
return outputStr
}
我知道如何单独查找和替换,但我想知道是否有一种简单的方法可以同时处理多对(区分大小写)值。
谢谢!