gpt4 book ai didi

node.js - 正则表达式中的 NodeJS 变量

转载 作者:搜寻专家 更新时间:2023-10-31 23:29:09 25 4
gpt4 key购买 nike

如何在 Regex 中合并 find 变量?

var find = 'de';
var phrase = 'abcdefgh';
var replace = '45';

var newString = phrase.replace(/de/g, replace)

即:var newString = phrase.replace(/find/g, replace)

预期:phrase = 'abc45fgh';

最佳答案

您可以使用new RegExp()

var newString = phrase.replace(new RegExp(find, 'g'), replace);

关于node.js - 正则表达式中的 NodeJS 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25330707/

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