Browse Source

Regex

pull/9/head
Jure Šorn 6 years ago
parent
commit
e6d4c6b14c
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -265,7 +265,7 @@ import re
<Match_iter> = re.finditer(<regex>, text) # Searches for all occurrences of pattern.
```
* **Use `'\\\\1'` or `r'\1'` for backreference.**
* **Use `r'\1'` or `'\\\\1'` for backreference.**
* **Use `?` to make operators non-greedy.**
* **Parameter `flags=re.IGNORECASE` can be used with all functions.**
* **Parameter `flags=re.DOTALL` makes dot also accept newline.**

Loading…
Cancel
Save