gpt4 book ai didi

JavaScript 字符串替换 - 如何在替换字符串中使用匹配的变量?

转载 作者:可可西里 更新时间:2023-11-01 02:30:35 26 4
gpt4 key购买 nike

如何在替换字符串中使用模式中匹配的变量?

var regexp = new RegExp('needle', 'ig');
str.replace(regexp, '<span class="marked">//1</span>')

最佳答案

尝试

var regexp = new RegExp(something, 'ig');
str.replace(regexp, '<span class="marked">$&</span>')

引用资料:

关于JavaScript 字符串替换 - 如何在替换字符串中使用匹配的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6993492/

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