比如说:现在需要从以上数组中取到所有typeIds等号"="后的数值,求一个方法,谢谢了!
1 回答
森林海
TA贡献2011条经验 获得超2个赞
let Arr = ['typeIds=123', 'edasda', 'typeIds=456'],
arr = [];
Arr.forEach(v => {
v.includes('typeIds') ? arr.push(v.match(/\d+/i)[0]) : ''
});
添加回答
举报
0/150
提交
取消