We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a08335 commit 602f794Copy full SHA for 602f794
1 file changed
9-regular-expressions/09-regexp-groups/4-find-decimal-numbers/solution.md
@@ -1,6 +1,6 @@
1
-A positive number with an optional decimal part is (per previous task): `pattern:\d+(\.\d+)?`.
+Положительное число с необязательным присутствием десятичной части (из прошлой задачи): `pattern:\d+(\.\d+)?`.
2
3
-Let's add an optional `-` in the beginning:
+Давайте добавим необязательный `-` в начало:
4
5
```js run
6
let reg = /-?\d+(\.\d+)?/g;
0 commit comments