closes #2752
This commit is contained in:
parent
83085378e3
commit
6989312841
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue