Skip to content

Commit 5fd5582

Browse files
sumn2uCopilot
andcommitted
Update en/regular-expression.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3b9b645 commit 5fd5582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/regular-expression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ _Metacharacters_ are special character that has special meaning in the regular e
179179
| `\w` | Match a word character (alphanumeric character `[a-zA-Z0–9_]`) |
180180
| `\W` | Match a non word character (same as `[^a-zA-Z0–9_]`) |
181181
| `\d` | Match any digit character( same as `[0-9]`) |
182-
| `\D` | Match any non digit character |
182+
| `\D` | Match any non-digit character |
183183
| `\s` | Match a whitespace character (spaces, tabs etc) |
184184
| `\S` | Match a non whitespace character |
185185
| `\b` | Match at the beginning / end of a word |

0 commit comments

Comments
 (0)