"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

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` |