mirror of
https://github.com/python/cpython.git
synced 2026-04-22 03:41:08 +00:00
bpo-35584: Clarify role of caret in a class class (GH-11946) (GH-11947)
https://bugs.python.org/issue35584
(cherry picked from commit 3bacf61265)
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
This commit is contained in:
parent
e8bf04de4b
commit
bb9ddee3d4
1 changed files with 3 additions and 2 deletions
|
|
@ -96,8 +96,9 @@ special nature.
|
|||
|
||||
You can match the characters not listed within the class by :dfn:`complementing`
|
||||
the set. This is indicated by including a ``'^'`` as the first character of the
|
||||
class; ``'^'`` outside a character class will simply match the ``'^'``
|
||||
character. For example, ``[^5]`` will match any character except ``'5'``.
|
||||
class. For example, ``[^5]`` will match any character except ``'5'``. If the
|
||||
caret appears elsewhere in a character class, it does not have special meaning.
|
||||
For example: ``[5^]`` will match either a ``'5'`` or a ``'^'``.
|
||||
|
||||
Perhaps the most important metacharacter is the backslash, ``\``. As in Python
|
||||
string literals, the backslash can be followed by various characters to signal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue