"not digit" => "d" is upper case?

This commit is contained in:
Will Ware 2019-01-08 12:05:23 -05:00 committed by GitHub
parent 79f35133f0
commit a75bec82da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ description: |
| `\d` | Digit |
| `\s` | Whitespace |
| `\W` | Not word |
| `\d` | Not digit |
| `\D` | Not digit |
| `\S` | Not whitespace |
| `[abc]` | Any of a, b, or c |
| `[a-e]` | Characters between `a` and `e` |