mirror of
https://github.com/python/cpython.git
synced 2025-10-02 05:12:23 +00:00
gh-69929: re docs: Add more specific definition of \w (GH-92015)
(cherry picked from commit 36a0b1d0dd
)
Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
parent
c42a4ad587
commit
cfa78ecc12
1 changed files with 3 additions and 4 deletions
|
@ -589,10 +589,9 @@ character ``'$'``.
|
||||||
|
|
||||||
``\w``
|
``\w``
|
||||||
For Unicode (str) patterns:
|
For Unicode (str) patterns:
|
||||||
Matches Unicode word characters; this includes most characters
|
Matches Unicode word characters; this includes alphanumeric characters (as defined by :meth:`str.isalnum`)
|
||||||
that can be part of a word in any language, as well as numbers and
|
as well as the underscore (``_``).
|
||||||
the underscore. If the :const:`ASCII` flag is used, only
|
If the :const:`ASCII` flag is used, only ``[a-zA-Z0-9_]`` is matched.
|
||||||
``[a-zA-Z0-9_]`` is matched.
|
|
||||||
|
|
||||||
For 8-bit (bytes) patterns:
|
For 8-bit (bytes) patterns:
|
||||||
Matches characters considered alphanumeric in the ASCII character set;
|
Matches characters considered alphanumeric in the ASCII character set;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue