Skip to content

Commit db14a12

Browse files
committed
Regex
1 parent c07a19a commit db14a12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ import re
265265
<Match_iter> = re.finditer(<regex>, text) # Searches for all occurrences of pattern.
266266
```
267267

268-
* **Use `r'\1'` or `'\\\\1'` for backreference.**
269-
* **Use `'?'` to make operators non-greedy.**
270268
* **Parameter `'flags=re.IGNORECASE'` can be used with all functions.**
271-
* **Parameter `'flags=re.DOTALL'` makes dot also accept newline.**
269+
* **Parameter `'flags=re.DOTALL'` makes dot also accept newline.**
270+
* **Use `r'\1'` or `'\\\\1'` for backreference.**
271+
* **Use `'?'` to make operators non-greedy.**
272272

273273
### Match Object
274274
```python

0 commit comments

Comments
 (0)