嗨,我需要拆分变量值的一部分
在我的 html 文件中,我得到了一个变量的动态值,像这样
product/roe_anythin_anything-1.jpg
product/soe_anything_anything-2.jpg
我需要删除之前
/斜线部分
之后
_ 部分
这应该返回roe or soe
部分
我使用了一个功能
<script>
function splitSize(){
$('#splitSize').each(function(index) {
var mystr = $(this).html();
var mystr1 = /product\/(.*)-.*/.exec(mystr);
$(this).html(mystr1[1]);
//$(this).html(mystr1[0]);
});
}
splitSize();
</script>
有了它,我成功获得了 roe_anythin_anything 我只需要在 ` 之后立即删除
_ 部分
`
请建议我该怎么做