i have this regex to get the unit, but i only can get an unit (8.5 lb), i want to get everything (8.5 lb, 25.4 lb)
let data=`<br><span style="font-size: 15px;"><span style="color: #000000;">• 8.5 lb, 25.4 lb</ `
const regex = / \s*([0-9]+(?:\.\d+)?(?:\s*(?:l[ lb ]|lb))?)\b/g;
let m = regex.exec(data)
console.log(m)