Browse Source

Regex

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

3
README.md

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

Loading…
Cancel
Save