We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07a19a commit db14a12Copy full SHA for db14a12
README.md
@@ -265,10 +265,10 @@ import re
265
<Match_iter> = re.finditer(<regex>, text) # Searches for all occurrences of pattern.
266
```
267
268
-* **Use `r'\1'` or `'\\\\1'` for backreference.**
269
-* **Use `'?'` to make operators non-greedy.**
270
* **Parameter `'flags=re.IGNORECASE'` can be used with all functions.**
271
-* **Parameter `'flags=re.DOTALL'` makes dot also accept newline.**
+* **Parameter `'flags=re.DOTALL'` makes dot also accept newline.**
+* **Use `r'\1'` or `'\\\\1'` for backreference.**
+* **Use `'?'` to make operators non-greedy.**
272
273
### Match Object
274
```python
0 commit comments