summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-03-02 05:13:57 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-03-02 05:13:57 (GMT)
commitae91d0907d5e966eeadce1dc2a77680171bc182f (patch)
treed45bd9accec936428bb538a676688a4eed9ff999 /Doc
parent0261e5d0b65c6a935f88f59629ea658296cb3d8a (diff)
downloadcpython-ae91d0907d5e966eeadce1dc2a77680171bc182f.zip
cpython-ae91d0907d5e966eeadce1dc2a77680171bc182f.tar.gz
cpython-ae91d0907d5e966eeadce1dc2a77680171bc182f.tar.bz2
Adds an optional flags argument to re.split, re.sub and re.subn to be
consistent with the other re module functions.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/re.rst19
1 files changed, 16 insertions, 3 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 2237f07..4fb4016 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -540,7 +540,7 @@ form.
instead.
-.. function:: split(pattern, string[, maxsplit=0])
+.. function:: split(pattern, string[, maxsplit=0, flags=0])
Split *string* by the occurrences of *pattern*. If capturing parentheses are
used in *pattern*, then the text of all groups in the pattern are also returned
@@ -555,6 +555,8 @@ form.
['Words', ', ', 'words', ', ', 'words', '.', '']
>>> re.split('\W+', 'Words, words, words.', 1)
['Words', 'words, words.']
+ >>> re.split('[a-f]+', '0a3B9', flags=re.IGNORECASE)
+ ['0', '3', '9']
If there are capturing groups in the separator and it matches at the start of
the string, the result will start with an empty string. The same holds for
@@ -575,6 +577,9 @@ form.
>>> re.split("(?m)^$", "foo\n\nbar\n")
['foo\n\nbar\n']
+ .. versionchanged:: 2.7,3.1
+ Added the optional flags argument.
+
.. function:: findall(pattern, string[, flags])
@@ -605,7 +610,7 @@ form.
Added the optional flags argument.
-.. function:: sub(pattern, repl, string[, count])
+.. function:: sub(pattern, repl, string[, count, flags])
Return the string obtained by replacing the leftmost non-overlapping occurrences
of *pattern* in *string* by the replacement *repl*. If the pattern isn't found,
@@ -630,6 +635,8 @@ form.
... else: return '-'
>>> re.sub('-{1,2}', dashrepl, 'pro----gram-files')
'pro--gram files'
+ >>> re.sub(r'\sAND\s', ' & ', 'Baked Beans And Spam', flags=re.IGNORECASE)
+ 'Baked Beans & Spam'
The pattern may be a string or an RE object; if you need to specify regular
expression flags, you must use a RE object, or use embedded modifiers in a
@@ -650,12 +657,18 @@ form.
character ``'0'``. The backreference ``\g<0>`` substitutes in the entire
substring matched by the RE.
+ .. versionchanged:: 2.7,3.1
+ Added the optional flags argument.
+
-.. function:: subn(pattern, repl, string[, count])
+.. function:: subn(pattern, repl, string[, count, flags])
Perform the same operation as :func:`sub`, but return a tuple ``(new_string,
number_of_subs_made)``.
+ .. versionchanged:: 2.7,3.1
+ Added the optional flags argument.
+
.. function:: escape(string)