Browse Source

Regex

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

6
README.md

@ -266,9 +266,9 @@ import re
```
* **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.**
* **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.**
### Match Object
```python

Loading…
Cancel
Save