Skip to content

Commit

Permalink
docs: Document number ranges and sets in README
Browse files Browse the repository at this point in the history
  • Loading branch information
timo-reymann committed Jan 24, 2025
1 parent 29e67f4 commit 9ee73e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ Class | Meaning
---------- | -------
`[abc]` | matches any single character within the set
`[a-z]` | matches any single character in the range
`[123]` | matches any single number within the set
`[1-9]` | matches any single number in the range
`[^class]` | matches any single character which does *not* match the class
`[!class]` | same as `^`: negates the class
Expand Down

0 comments on commit 9ee73e3

Please sign in to comment.