我有一个字符串,例如hello _there_。我想分别使用 JavaScript*<div>和</div>分别替换两个下划线。(因此)输出看起来像。该字符串可能包含多对下划线。 *hello<div>there</div>
hello _there_
<div>
</div>
hello<div>there</div>
我所寻找的是一个方法来 无论是 运行在每场比赛,红宝石做它的方式的函数:
"hello _there_".gsub(/_.*?_/) { |m| "<div>" + m[1..-2] + "</div>" }
或 能够再次引用匹配的组,就像在ruby中一样:
"hello _there_".gsub(/_(.*?)_/, "<div>\\1</div>")
有什么想法或建议吗?
"hello _there_".replace(/_(.*?)_/, function(a, b){ return '<div>' + b + '</div>'; })
哦,或者您也可以:
"hello _there_".replace(/_(.*?)_/, "<div>$1</div>")