Skip to content

Commit 6d90c0f

Browse files
Update solution.md
1 parent 0587094 commit 6d90c0f

File tree

1 file changed

+1
-0
lines changed
  • 9-regular-expressions/14-regexp-lookahead-lookbehind/1-find-non-negative-integers

1 file changed

+1
-0
lines changed

9-regular-expressions/14-regexp-lookahead-lookbehind/1-find-non-negative-integers/solution.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
Регулярний вираз для цілого числа `pattern:\d+`.
23

34
Ми можемо виключити від'ємні числа попередньо написавши регулярний вираз для негативного перегляду назад: `pattern:(?<!-)\d+`.

0 commit comments

Comments
 (0)