From 6989312841d843f2350803ab552d9082437be569 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 25 Oct 2021 23:06:58 +0300 Subject: [PATCH] closes #2752 --- 9-regular-expressions/07-regexp-escaping/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9-regular-expressions/07-regexp-escaping/article.md b/9-regular-expressions/07-regexp-escaping/article.md index 3a4640b4..1ad3ac98 100644 --- a/9-regular-expressions/07-regexp-escaping/article.md +++ b/9-regular-expressions/07-regexp-escaping/article.md @@ -3,9 +3,9 @@ As we've seen, a backslash `pattern:\` is used to denote character classes, e.g. `pattern:\d`. So it's a special character in regexps (just like in regular strings). -There are other special characters as well, that have special meaning in a regexp. They are used to do more powerful searches. Here's a full list of them: `pattern:[ \ ^ $ . | ? * + ( )`. +There are other special characters as well, that have special meaning in a regexp, such as `pattern:[ ] { } ( ) \ ^ $ . | ? * +`. They are used to do more powerful searches. -Don't try to remember the list -- soon we'll deal with each of them separately and you'll know them by heart automatically. +Don't try to remember the list -- soon we'll deal with each of them, and you'll know them by heart automatically. ## Escaping