We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9b645 commit 5fd5582Copy full SHA for 5fd5582
en/regular-expression.md
@@ -179,7 +179,7 @@ _Metacharacters_ are special character that has special meaning in the regular e
179
| `\w` | Match a word character (alphanumeric character `[a-zA-Z0–9_]`) |
180
| `\W` | Match a non word character (same as `[^a-zA-Z0–9_]`) |
181
| `\d` | Match any digit character( same as `[0-9]`) |
182
-| `\D` | Match any non digit character |
+| `\D` | Match any non-digit character |
183
| `\s` | Match a whitespace character (spaces, tabs etc) |
184
| `\S` | Match a non whitespace character |
185
| `\b` | Match at the beginning / end of a word |
0 commit comments