- 前面带数字,后面非数字,可以直接用parseFloat()函数
let num = parseFloat("2.89元"); // num : 2.89
let str = '生于1999年';
let num = str1.replace(/[^\d]/g,' '); // num : 1999
let str = '大米:2.57斤/元,白菜:3.65元/斤';
let arr = str.match(/\d+(.\d+)?/g); // arr: ["2.75","3.65"]