小编典典

Javascript参考匹配组替换?

all

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

我正在寻找的是一种在每场比赛 运行一个函数的方法,就像 Ruby 那样:

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

或者 能够引用匹配的组,同样可以在 ruby​​ 中完成:

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

有什么想法或建议吗?


阅读 210

收藏
2022-05-06

共1个答案

小编典典

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

哦,或者你也可以:

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