Browse Source

Regex special sequences

pull/3/head
Jure Šorn 7 years ago
parent
commit
30ae14ce87
1 changed files with 1 additions and 2 deletions
  1. 3
      README.md

3
README.md

@ -174,12 +174,11 @@ re.split(<regex>, text, maxsplit=0) # Use brackets in regex to keep the matches
#### Special Sequences:
```python
# Use capital letter for negation.
'\d' == '[0-9]' # Digit
'\s' == '[ \t\n\r\f\v]' # Whitespace
'\w' == '[a-zA-Z0-9_]' # Alphanumeric
```
**Use capital letter for negation.**
### Format
```python

Loading…
Cancel
Save