Skip to content

Commit 9ee73e3

Browse files
committed
docs: Document number ranges and sets in README
1 parent 29e67f4 commit 9ee73e3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,8 @@ Class | Meaning
378378
---------- | -------
379379
`[abc]` | matches any single character within the set
380380
`[a-z]` | matches any single character in the range
381+
`[123]` | matches any single number within the set
382+
`[1-9]` | matches any single number in the range
381383
`[^class]` | matches any single character which does *not* match the class
382384
`[!class]` | same as `^`: negates the class
383385

0 commit comments

Comments
 (0)