Fix character groups description for [a-c]*

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2018-05-04 22:10:27 +02:00
parent 2fdfeda9db
commit ac27a22f59

View File

@@ -63,8 +63,7 @@ Character group | Interpretation
--- | --- --- | ---
`[abc]` | matches `a`, `b`, or `c` (using explicitly specified characters) `[abc]` | matches `a`, `b`, or `c` (using explicitly specified characters)
`[a-c]` | matches `a`, `b`, or `c` (using a *range*) `[a-c]` | matches `a`, `b`, or `c` (using a *range*)
`[a-c]?` | matches any number of `a`, `b`, `c` `[a-c]+` | matches any non-zero number of `a`, `b`, `c`
`[a-c]*` | as `[a-c]*` but optional
`[a-z]` | matches any single lowercase letter `[a-z]` | matches any single lowercase letter
`[a-zA-Z]` | matches any single letter `[a-zA-Z]` | matches any single letter
`[a-z0-9]` | matches any single lowercase letter or any single digit `[a-z0-9]` | matches any single lowercase letter or any single digit