mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
regex: fix typo in regex character class example (#21441)
This commit is contained in:
parent
996382fe47
commit
7e02baebd0
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ but it doesn't match `C` or `z`.
|
||||||
Inside a cc, it is possible to specify a "range" of characters, for example
|
Inside a cc, it is possible to specify a "range" of characters, for example
|
||||||
`[ad-h]` is equivalent to writing `[adefgh]`.
|
`[ad-h]` is equivalent to writing `[adefgh]`.
|
||||||
|
|
||||||
A cc can have different ranges at the same time, for example `[a-zA-z0-9]`
|
A cc can have different ranges at the same time, for example `[a-zA-Z0-9]`
|
||||||
matches all the latin lowercase, uppercase and numeric characters.
|
matches all the latin lowercase, uppercase and numeric characters.
|
||||||
|
|
||||||
It is possible to negate the meaning of a cc, using the caret char at the
|
It is possible to negate the meaning of a cc, using the caret char at the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue