en.javascript.info/9-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers/task.md
2019-04-02 14:01:44 +03:00

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)