小编典典

用引用替换匹配组的Javascript?

javascript

我有一个字符串,例如hello _there_。我想分别使用
JavaScript*<div></div>分别替换两个下划线。(因此)输出看起来像。该字符串可能包含多对下划线。
*hello<div>there</div>

我所寻找的是一个方法来 无论是 运行在每场比赛,红宝石做它的方式的函数:

"hello _there_".gsub(/_.*?_/) { |m| "<div>" + m[1..-2] + "</div>" }

能够再次引用匹配的组,就像在ruby中一样:

"hello _there_".gsub(/_(.*?)_/, "<div>\\1</div>")

有什么想法或建议吗?


阅读 259

收藏
2020-05-01

共1个答案

小编典典

"hello _there_".replace(/_(.*?)_/, function(a, b){
    return '<div>' + b + '</div>';
})

哦,或者您也可以:

"hello _there_".replace(/_(.*?)_/, "<div>$1</div>")
2020-05-01