Skip to content

Commit bdf159a

Browse files
Update 9-regular-expressions/07-regexp-quantifiers/article.md
Co-Authored-By: Alexey Pyltsyn <lex61rus@gmail.com>
1 parent 52943f9 commit bdf159a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 9-regular-expressions/07-regexp-quantifiers

9-regular-expressions/07-regexp-quantifiers/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
alert( "Мне 12345 лет".match(/\d{5}/) ); // "12345"
2222
```
2323

24-
Мы можем добавить `\b` чтобы исключить числа длинней: `pattern:\b\d{5}\b`.
24+
Мы можем добавить `\b`, чтобы исключить числа длинней: `pattern:\b\d{5}\b`.
2525

2626
Диапазон: `{3,5}`, от 3 до 5
2727
: Для того, чтобы найти числа c диапазоном от 3 до 5 знаков, мы можем указать границы в фигурных скобках: `pattern:\d{3,5}`

0 commit comments

Comments
 (0)