我要替换这样的字符串,“这是示例字符串”(仅示例)。我有这样的数组
const arr = [
{badWord: 'example', replaceTo: 'test'},
{badWord: 'example example 2', replaceTo: 'test 2'}
];
因此,当字符串包含badWord属性时,单词将替换为“ replaceTo”属性。我考虑循环,但是在regexp中我认为可以做到吗?这是错误的,您需要使用循环。但是我还不知道regexp