Skip to content

Commit d54648e

Browse files
committed
Add a note in the docs
1 parent 6140374 commit d54648e

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,14 @@ Igroups can also be nested:
108108
(+a|(+b|c)) => ['a', 'ab', 'abc', 'ac', 'b', 'bc', 'c']
109109
```
110110

111+
### Escaping
112+
113+
You can escape special characters by using a backslash (`\`):
114+
115+
```
116+
\(a\|b\) => ['(a|b)']
117+
```
118+
111119
### Complex patterns
112120

113121
Finally, you can mix all of them into complex patterns:

0 commit comments

Comments
 (0)