今天项目中遇到一个截取字符串中的月份问题,再将月份作为路由参数传递到其他组件进行搜索,记录一下
1. 使用parseInt()
let str = "7月份";
let num = parseInt(str);
console.log(num); //7
使用局限性:只能截取开头为数字的字符串,遇到非数字将停止截取
2. 使用正则表达式截取
var str ="今年7月的月报资料";
var num= str.replace(/[^0-9]/ig,"");
console.log(num);//7