mirror of
https://github.com/python/cpython.git
synced 2025-10-03 21:55:41 +00:00
Merged revisions 81463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81463 | georg.brandl | 2010-05-22 10:17:23 +0200 (Sa, 22 Mai 2010) | 1 line #8785: less confusing description of regex.find*. ........
This commit is contained in:
parent
f5a3eafaac
commit
a10d64fba2
1 changed files with 6 additions and 2 deletions
|
@ -727,12 +727,16 @@ Regular Expression Objects
|
||||||
|
|
||||||
.. method:: RegexObject.findall(string[, pos[, endpos]])
|
.. method:: RegexObject.findall(string[, pos[, endpos]])
|
||||||
|
|
||||||
Identical to the :func:`findall` function, using the compiled pattern.
|
Similar to the :func:`findall` function, using the compiled pattern, but
|
||||||
|
also accepts optional *pos* and *endpos* parameters that limit the search
|
||||||
|
region like for :meth:`match`.
|
||||||
|
|
||||||
|
|
||||||
.. method:: RegexObject.finditer(string[, pos[, endpos]])
|
.. method:: RegexObject.finditer(string[, pos[, endpos]])
|
||||||
|
|
||||||
Identical to the :func:`finditer` function, using the compiled pattern.
|
Similar to the :func:`finditer` function, using the compiled pattern, but
|
||||||
|
also accepts optional *pos* and *endpos* parameters that limit the search
|
||||||
|
region like for :meth:`match`.
|
||||||
|
|
||||||
|
|
||||||
.. method:: RegexObject.sub(repl, string[, count=0])
|
.. method:: RegexObject.sub(repl, string[, count=0])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue