We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214ce99 commit 2a6c660Copy full SHA for 2a6c660
9-regular-expressions/14-regexp-lookahead-lookbehind/1-find-non-negative-integers/task.md
@@ -1,12 +1,12 @@
1
-# Find non-negative integers
+# Знайдіть цілі невід'ємні числа
2
3
-There's a string of integer numbers.
+Дано рядок з цілих чисел.
4
5
-Create a regexp that looks for only non-negative ones (zero is allowed).
+Напишіть регулярний вираз, який знаходить тільки цілі невід'ємні числа (нуль допускається).
6
7
-An example of use:
+Приклад використання:
8
```js
9
-let regexp = /your regexp/g;
+let regexp = /ваш регулярний вираз/g;
10
11
let str = "0 12 -5 123 -18";
12
0 commit comments