Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
ramvikrams authored Nov 1, 2022
commit afab961c9c849d4d30982a822ddb9ce9e3ab95b1
2 changes: 1 addition & 1 deletion Doc/library/re.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ search() vs. match()

Python offers different primitive operations based on regular expressions:
:func:`re.match` checks for a match only at the beginning of the string,
:func:`re.fullmatch` checks for entire string to be a match. :func:`re.search`
:func:`re.fullmatch` checks for entire string to be a match. :func:`re.search`
checks for a match anywhere in the string (this is what Perl does by default).

For example::
Expand Down