gpt4 book ai didi

javascript - 是否可以在替换方法中传递变量而不是常量

转载 作者:行者123 更新时间:2023-11-30 11:07:11 24 4
gpt4 key购买 nike

在下面的代码中,每 3 位数字后放置一个逗号

{
var commaString = valueWthOutComma.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}

是否可以在上面的 RegEx 中传递任何变量来代替“3”,我想要的是

{
var comma_place = 2 ; //any value can be place
var commaString = valueWthOutComma.replace(/\B(?=(\d{comma_place})+(?!\d))/g, ",");
}

最佳答案

要执行您需要的操作,您需要将正则表达式构建为字符串而不是文字,并将其提供给 RegExp() 构造函数,如下所示:

var comma_place = 2; //any value can be place
var re = new RegExp('\B(?=(\d{' + comma_place + '})+(?!\d))', 'g');
// var re = new RegExp(`\B(?=(\d{${comma_place}})+(?!\d))`, 'g'); // ES6 - won't work in IE
var commaString = valueWthOutComma.replace(re, ",");

关于javascript - 是否可以在替换方法中传递变量而不是常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55139435/

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