File tree 1 file changed +0
-3
lines changed
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -130,11 +130,8 @@ See [Quantifiers API doc](./docs/API.md#quantifiers) for more info.
130
130
| --------------------- | ------------ | ------------------------------------------------- |
131
131
| ` any ` | ` . ` | Any character |
132
132
| ` word ` | ` \w ` | Word character: letter, digit, underscore |
133
- | ` notWord ` | ` \W ` | Non-word character |
134
133
| ` digit ` | ` \d ` | Digit character: 0 to 9 |
135
- | ` notDigit ` | ` \D ` | Non-digit character |
136
134
| ` whitespace ` | ` \s ` | Whitespace character: space, tab, line break, ... |
137
- | ` notWhitespace ` | ` \S ` | Non-whitespace character |
138
135
| ` anyOf('abc') ` | ` [abc] ` | Any of provided characters |
139
136
| ` charRange('a', 'z') ` | ` [a-z] ` | Character in a range |
140
137
| ` charClass(...) ` | ` [...] ` | Union of multiple character classes |
You can’t perform that action at this time.
0 commit comments