We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8ea2d78 commitaa4037bCopy full SHA for aa4037b
README.md
@@ -3156,7 +3156,7 @@ The dot-star will match everything except a newline. By passing re.DOTALL as the
3156
|`^spam`| means the string must beginwith spam.|
3157
|`spam$`| means the string must endwith spam.|
3158
|`.`|any character,except newline characters.|
3159
-|`\d`, `\w`, and `\s` | a digit, word, or space character,ectively. |
+|`\d`, `\w`, and `\s` | a digit, word, or space character,respectively. |
3160
| `\D`, `\W`, and `\S` | anything except a digit, word, or space acter, respectively. |
3161
|`[abc]`|any character between the brackets (suchas a, b, ).|
3162
|`[^abc]`|any character that isn’t between the brackets.|