gpt4 book ai didi

javascript - jquery 使用替换中的匹配进行操作

转载 作者:行者123 更新时间:2023-12-03 07:05:02 26 4
gpt4 key购买 nike

.replace(/\$\$(.*?)\$\$/g, '<I>$1</I>')

可以用 $1 进行操作吗?我的意思是包裹到吸收功能?

例如:

.replace(/\$\$(.*?)\$\$/g, '<I>'+test($1)+'</I>')

此示例返回 $i 未定义/

最佳答案

您可以使用 .match,例如:

var matches = str.match(/\$\$(.*?)\$\$/g);
if (matches && matches.length > 0) {
str = str.replace(matches[0], '<I>' + test(matches[0]) + '</I>');
}

关于javascript - jquery 使用替换中的匹配进行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36864243/

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