Skip to content

Commit 6989312

Browse files
committed
closes #2752
1 parent 8308537 commit 6989312

File tree

1 file changed

+2
-2
lines changed
  • 9-regular-expressions/07-regexp-escaping

1 file changed

+2
-2
lines changed

Diff for: 9-regular-expressions/07-regexp-escaping/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
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).
55

6-
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:[ \ ^ $ . | ? * + ( )`.
6+
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.
77

8-
Don't try to remember the list -- soon we'll deal with each of them separately and you'll know them by heart automatically.
8+
Don't try to remember the list -- soon we'll deal with each of them, and you'll know them by heart automatically.
99

1010
## Escaping
1111

0 commit comments

Comments
 (0)