268 B
268 B
Find positive numbers
Create a regexp that looks for positive numbers, including those without a decimal point.
An example of use:
let reg = /your regexp/g;
let str = "1.5 0 -5 12. 123.4.";
alert( str.match(reg) ); // 1.5, 12, 123.4 (ignores 0 and -5)