我正在尝试检测数字后跟“。” 然后将它们包装在<span>
没有最后一个“。”
到目前为止,这就是我所拥有的:
$(".item_title").each(function(index) {
var t = $(this).html().replace(/(^\d+\.)/g, "<span>$1</span>");
$(this).html(t);
});
但我最终得到了<span>5.</span>
,我正在寻找<span>5</span>
另外,我做正则表达式替换的方式是否正确有效?
谢谢!