mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
gh-69929: re docs: Add more specific definition of \w (#92015)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
parent
797edb28c3
commit
36a0b1d0dd
@ -591,10 +591,9 @@ character ``'$'``.
|
||||
|
||||
``\w``
|
||||
For Unicode (str) patterns:
|
||||
Matches Unicode word characters; this includes most characters
|
||||
that can be part of a word in any language, as well as numbers and
|
||||
the underscore. If the :const:`ASCII` flag is used, only
|
||||
``[a-zA-Z0-9_]`` is matched.
|
||||
Matches Unicode word characters; this includes alphanumeric characters (as defined by :meth:`str.isalnum`)
|
||||
as well as the underscore (``_``).
|
||||
If the :const:`ASCII` flag is used, only ``[a-zA-Z0-9_]`` is matched.
|
||||
|
||||
For 8-bit (bytes) patterns:
|
||||
Matches characters considered alphanumeric in the ASCII character set;
|
||||
|
Loading…
Reference in New Issue
Block a user