Merge pull request #2621 from leviding/patch-36
FIX: The range of hexadecimal numbers is 0-9 or A-F
This commit is contained in:
commit
581117ffe0
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ Unicode supports many different properties, their full list would require a lot
|
|||
|
||||
### Example: hexadecimal numbers
|
||||
|
||||
For instance, let's look for hexadecimal numbers, written as `xFF`, where `F` is a hex digit (0..1 or A..F).
|
||||
For instance, let's look for hexadecimal numbers, written as `xFF`, where `F` is a hex digit (0..9 or A..F).
|
||||
|
||||
A hex digit can be denoted as `pattern:\p{Hex_Digit}`:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue