我有一个字符串,例如hello _there_. 我想分别用<div>和替换这两个下划线</div>,使用 JavaScript 。输出将(因此)看起来像hello <div>there</div>. 该字符串可能包含多对下划线。
hello _there_
<div>
</div>
hello <div>there</div>
我正在寻找的是一种在每场比赛 上 运行一个函数的方法,就像 Ruby 那样:
"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>")