12 lines
268 B
Markdown
12 lines
268 B
Markdown
# Find positive numbers
|
|
|
|
Create a regexp that looks for positive numbers, including those without a decimal point.
|
|
|
|
An example of use:
|
|
```js
|
|
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)
|
|
```
|