blob: 8d6ef03e7cd76ff8dbf82b14a33694ec24b0ad01 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2:mod:`re` --- Regular expression operations
3===========================================
4
5.. module:: re
6 :synopsis: Regular expression operations.
7.. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
8.. sectionauthor:: Andrew M. Kuchling <amk@amk.ca>
9
10
Georg Brandl8ec7f652007-08-15 14:28:01 +000011This module provides regular expression matching operations similar to
12those found in Perl. Both patterns and strings to be searched can be
Georg Brandl8943caf2009-04-05 21:11:43 +000013Unicode strings as well as 8-bit strings.
Georg Brandl8ec7f652007-08-15 14:28:01 +000014
15Regular expressions use the backslash character (``'\'``) to indicate
16special forms or to allow special characters to be used without invoking
17their special meaning. This collides with Python's usage of the same
18character for the same purpose in string literals; for example, to match
19a literal backslash, one might have to write ``'\\\\'`` as the pattern
20string, because the regular expression must be ``\\``, and each
21backslash must be expressed as ``\\`` inside a regular Python string
22literal.
23
24The solution is to use Python's raw string notation for regular expression
25patterns; backslashes are not handled in any special way in a string literal
26prefixed with ``'r'``. So ``r"\n"`` is a two-character string containing
27``'\'`` and ``'n'``, while ``"\n"`` is a one-character string containing a
Georg Brandlba2e5192007-09-27 06:26:58 +000028newline. Usually patterns will be expressed in Python code using this raw
29string notation.
Georg Brandl8ec7f652007-08-15 14:28:01 +000030
Georg Brandlb8df1562007-12-05 18:30:48 +000031It is important to note that most regular expression operations are available as
32module-level functions and :class:`RegexObject` methods. The functions are
33shortcuts that don't require you to compile a regex object first, but miss some
34fine-tuning parameters.
35
Georg Brandl8ec7f652007-08-15 14:28:01 +000036.. seealso::
37
38 Mastering Regular Expressions
39 Book on regular expressions by Jeffrey Friedl, published by O'Reilly. The
Georg Brandlba2e5192007-09-27 06:26:58 +000040 second edition of the book no longer covers Python at all, but the first
Georg Brandl8ec7f652007-08-15 14:28:01 +000041 edition covered writing good regular expression patterns in great detail.
42
43
44.. _re-syntax:
45
46Regular Expression Syntax
47-------------------------
48
49A regular expression (or RE) specifies a set of strings that matches it; the
50functions in this module let you check if a particular string matches a given
51regular expression (or if a given regular expression matches a particular
52string, which comes down to the same thing).
53
54Regular expressions can be concatenated to form new regular expressions; if *A*
55and *B* are both regular expressions, then *AB* is also a regular expression.
56In general, if a string *p* matches *A* and another string *q* matches *B*, the
57string *pq* will match AB. This holds unless *A* or *B* contain low precedence
58operations; boundary conditions between *A* and *B*; or have numbered group
59references. Thus, complex expressions can easily be constructed from simpler
60primitive expressions like the ones described here. For details of the theory
61and implementation of regular expressions, consult the Friedl book referenced
62above, or almost any textbook about compiler construction.
63
64A brief explanation of the format of regular expressions follows. For further
Georg Brandl1cf05222008-02-05 12:01:24 +000065information and a gentler presentation, consult the :ref:`regex-howto`.
Georg Brandl8ec7f652007-08-15 14:28:01 +000066
67Regular expressions can contain both special and ordinary characters. Most
68ordinary characters, like ``'A'``, ``'a'``, or ``'0'``, are the simplest regular
69expressions; they simply match themselves. You can concatenate ordinary
70characters, so ``last`` matches the string ``'last'``. (In the rest of this
71section, we'll write RE's in ``this special style``, usually without quotes, and
72strings to be matched ``'in single quotes'``.)
73
74Some characters, like ``'|'`` or ``'('``, are special. Special
75characters either stand for classes of ordinary characters, or affect
76how the regular expressions around them are interpreted. Regular
77expression pattern strings may not contain null bytes, but can specify
78the null byte using the ``\number`` notation, e.g., ``'\x00'``.
79
80
81The special characters are:
82
Georg Brandl8ec7f652007-08-15 14:28:01 +000083``'.'``
84 (Dot.) In the default mode, this matches any character except a newline. If
85 the :const:`DOTALL` flag has been specified, this matches any character
86 including a newline.
87
88``'^'``
89 (Caret.) Matches the start of the string, and in :const:`MULTILINE` mode also
90 matches immediately after each newline.
91
92``'$'``
93 Matches the end of the string or just before the newline at the end of the
94 string, and in :const:`MULTILINE` mode also matches before a newline. ``foo``
95 matches both 'foo' and 'foobar', while the regular expression ``foo$`` matches
96 only 'foo'. More interestingly, searching for ``foo.$`` in ``'foo1\nfoo2\n'``
Amaury Forgeot d'Arcd08a8eb2008-01-10 21:59:42 +000097 matches 'foo2' normally, but 'foo1' in :const:`MULTILINE` mode; searching for
98 a single ``$`` in ``'foo\n'`` will find two (empty) matches: one just before
99 the newline, and one at the end of the string.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000100
101``'*'``
102 Causes the resulting RE to match 0 or more repetitions of the preceding RE, as
103 many repetitions as are possible. ``ab*`` will match 'a', 'ab', or 'a' followed
104 by any number of 'b's.
105
106``'+'``
107 Causes the resulting RE to match 1 or more repetitions of the preceding RE.
108 ``ab+`` will match 'a' followed by any non-zero number of 'b's; it will not
109 match just 'a'.
110
111``'?'``
112 Causes the resulting RE to match 0 or 1 repetitions of the preceding RE.
113 ``ab?`` will match either 'a' or 'ab'.
114
115``*?``, ``+?``, ``??``
116 The ``'*'``, ``'+'``, and ``'?'`` qualifiers are all :dfn:`greedy`; they match
117 as much text as possible. Sometimes this behaviour isn't desired; if the RE
118 ``<.*>`` is matched against ``'<H1>title</H1>'``, it will match the entire
119 string, and not just ``'<H1>'``. Adding ``'?'`` after the qualifier makes it
120 perform the match in :dfn:`non-greedy` or :dfn:`minimal` fashion; as *few*
121 characters as possible will be matched. Using ``.*?`` in the previous
122 expression will match only ``'<H1>'``.
123
124``{m}``
125 Specifies that exactly *m* copies of the previous RE should be matched; fewer
126 matches cause the entire RE not to match. For example, ``a{6}`` will match
127 exactly six ``'a'`` characters, but not five.
128
129``{m,n}``
130 Causes the resulting RE to match from *m* to *n* repetitions of the preceding
131 RE, attempting to match as many repetitions as possible. For example,
132 ``a{3,5}`` will match from 3 to 5 ``'a'`` characters. Omitting *m* specifies a
133 lower bound of zero, and omitting *n* specifies an infinite upper bound. As an
134 example, ``a{4,}b`` will match ``aaaab`` or a thousand ``'a'`` characters
135 followed by a ``b``, but not ``aaab``. The comma may not be omitted or the
136 modifier would be confused with the previously described form.
137
138``{m,n}?``
139 Causes the resulting RE to match from *m* to *n* repetitions of the preceding
140 RE, attempting to match as *few* repetitions as possible. This is the
141 non-greedy version of the previous qualifier. For example, on the
142 6-character string ``'aaaaaa'``, ``a{3,5}`` will match 5 ``'a'`` characters,
143 while ``a{3,5}?`` will only match 3 characters.
144
145``'\'``
146 Either escapes special characters (permitting you to match characters like
147 ``'*'``, ``'?'``, and so forth), or signals a special sequence; special
148 sequences are discussed below.
149
150 If you're not using a raw string to express the pattern, remember that Python
151 also uses the backslash as an escape sequence in string literals; if the escape
152 sequence isn't recognized by Python's parser, the backslash and subsequent
153 character are included in the resulting string. However, if Python would
154 recognize the resulting sequence, the backslash should be repeated twice. This
155 is complicated and hard to understand, so it's highly recommended that you use
156 raw strings for all but the simplest expressions.
157
158``[]``
159 Used to indicate a set of characters. Characters can be listed individually, or
160 a range of characters can be indicated by giving two characters and separating
161 them by a ``'-'``. Special characters are not active inside sets. For example,
162 ``[akm$]`` will match any of the characters ``'a'``, ``'k'``,
163 ``'m'``, or ``'$'``; ``[a-z]`` will match any lowercase letter, and
164 ``[a-zA-Z0-9]`` matches any letter or digit. Character classes such
165 as ``\w`` or ``\S`` (defined below) are also acceptable inside a
166 range, although the characters they match depends on whether :const:`LOCALE`
167 or :const:`UNICODE` mode is in force. If you want to include a
168 ``']'`` or a ``'-'`` inside a set, precede it with a backslash, or
169 place it as the first character. The pattern ``[]]`` will match
170 ``']'``, for example.
171
172 You can match the characters not within a range by :dfn:`complementing` the set.
173 This is indicated by including a ``'^'`` as the first character of the set;
174 ``'^'`` elsewhere will simply match the ``'^'`` character. For example,
175 ``[^5]`` will match any character except ``'5'``, and ``[^^]`` will match any
176 character except ``'^'``.
177
Mark Summerfield700a6352008-05-31 13:05:34 +0000178 Note that inside ``[]`` the special forms and special characters lose
179 their meanings and only the syntaxes described here are valid. For
180 example, ``+``, ``*``, ``(``, ``)``, and so on are treated as
181 literals inside ``[]``, and backreferences cannot be used inside
182 ``[]``.
183
Georg Brandl8ec7f652007-08-15 14:28:01 +0000184``'|'``
185 ``A|B``, where A and B can be arbitrary REs, creates a regular expression that
186 will match either A or B. An arbitrary number of REs can be separated by the
187 ``'|'`` in this way. This can be used inside groups (see below) as well. As
188 the target string is scanned, REs separated by ``'|'`` are tried from left to
189 right. When one pattern completely matches, that branch is accepted. This means
190 that once ``A`` matches, ``B`` will not be tested further, even if it would
191 produce a longer overall match. In other words, the ``'|'`` operator is never
192 greedy. To match a literal ``'|'``, use ``\|``, or enclose it inside a
193 character class, as in ``[|]``.
194
195``(...)``
196 Matches whatever regular expression is inside the parentheses, and indicates the
197 start and end of a group; the contents of a group can be retrieved after a match
198 has been performed, and can be matched later in the string with the ``\number``
199 special sequence, described below. To match the literals ``'('`` or ``')'``,
200 use ``\(`` or ``\)``, or enclose them inside a character class: ``[(] [)]``.
201
202``(?...)``
203 This is an extension notation (a ``'?'`` following a ``'('`` is not meaningful
204 otherwise). The first character after the ``'?'`` determines what the meaning
205 and further syntax of the construct is. Extensions usually do not create a new
206 group; ``(?P<name>...)`` is the only exception to this rule. Following are the
207 currently supported extensions.
208
209``(?iLmsux)``
210 (One or more letters from the set ``'i'``, ``'L'``, ``'m'``, ``'s'``,
211 ``'u'``, ``'x'``.) The group matches the empty string; the letters
212 set the corresponding flags: :const:`re.I` (ignore case),
213 :const:`re.L` (locale dependent), :const:`re.M` (multi-line),
214 :const:`re.S` (dot matches all), :const:`re.U` (Unicode dependent),
215 and :const:`re.X` (verbose), for the entire regular expression. (The
216 flags are described in :ref:`contents-of-module-re`.) This
217 is useful if you wish to include the flags as part of the regular
218 expression, instead of passing a *flag* argument to the
Georg Brandlcda25a12009-10-27 14:34:21 +0000219 :func:`re.compile` function.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000220
221 Note that the ``(?x)`` flag changes how the expression is parsed. It should be
222 used first in the expression string, or after one or more whitespace characters.
223 If there are non-whitespace characters before the flag, the results are
224 undefined.
225
226``(?:...)``
227 A non-grouping version of regular parentheses. Matches whatever regular
228 expression is inside the parentheses, but the substring matched by the group
229 *cannot* be retrieved after performing a match or referenced later in the
230 pattern.
231
232``(?P<name>...)``
233 Similar to regular parentheses, but the substring matched by the group is
Georg Brandl9b08e052009-04-05 21:21:05 +0000234 accessible within the rest of the regular expression via the symbolic group
235 name *name*. Group names must be valid Python identifiers, and each group
236 name must be defined only once within a regular expression. A symbolic group
237 is also a numbered group, just as if the group were not named. So the group
238 named ``id`` in the example below can also be referenced as the numbered group
239 ``1``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000240
241 For example, if the pattern is ``(?P<id>[a-zA-Z_]\w*)``, the group can be
242 referenced by its name in arguments to methods of match objects, such as
Georg Brandl9b08e052009-04-05 21:21:05 +0000243 ``m.group('id')`` or ``m.end('id')``, and also by name in the regular
244 expression itself (using ``(?P=id)``) and replacement text given to
245 ``.sub()`` (using ``\g<id>``).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000246
247``(?P=name)``
248 Matches whatever text was matched by the earlier group named *name*.
249
250``(?#...)``
251 A comment; the contents of the parentheses are simply ignored.
252
253``(?=...)``
254 Matches if ``...`` matches next, but doesn't consume any of the string. This is
255 called a lookahead assertion. For example, ``Isaac (?=Asimov)`` will match
256 ``'Isaac '`` only if it's followed by ``'Asimov'``.
257
258``(?!...)``
259 Matches if ``...`` doesn't match next. This is a negative lookahead assertion.
260 For example, ``Isaac (?!Asimov)`` will match ``'Isaac '`` only if it's *not*
261 followed by ``'Asimov'``.
262
263``(?<=...)``
264 Matches if the current position in the string is preceded by a match for ``...``
265 that ends at the current position. This is called a :dfn:`positive lookbehind
266 assertion`. ``(?<=abc)def`` will find a match in ``abcdef``, since the
267 lookbehind will back up 3 characters and check if the contained pattern matches.
268 The contained pattern must only match strings of some fixed length, meaning that
269 ``abc`` or ``a|b`` are allowed, but ``a*`` and ``a{3,4}`` are not. Note that
270 patterns which start with positive lookbehind assertions will never match at the
271 beginning of the string being searched; you will most likely want to use the
Georg Brandl6199e322008-03-22 12:04:26 +0000272 :func:`search` function rather than the :func:`match` function:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000273
274 >>> import re
275 >>> m = re.search('(?<=abc)def', 'abcdef')
276 >>> m.group(0)
277 'def'
278
Georg Brandl6199e322008-03-22 12:04:26 +0000279 This example looks for a word following a hyphen:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000280
281 >>> m = re.search('(?<=-)\w+', 'spam-egg')
282 >>> m.group(0)
283 'egg'
284
285``(?<!...)``
286 Matches if the current position in the string is not preceded by a match for
287 ``...``. This is called a :dfn:`negative lookbehind assertion`. Similar to
288 positive lookbehind assertions, the contained pattern must only match strings of
289 some fixed length. Patterns which start with negative lookbehind assertions may
290 match at the beginning of the string being searched.
291
292``(?(id/name)yes-pattern|no-pattern)``
293 Will try to match with ``yes-pattern`` if the group with given *id* or *name*
294 exists, and with ``no-pattern`` if it doesn't. ``no-pattern`` is optional and
295 can be omitted. For example, ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>)`` is a poor email
296 matching pattern, which will match with ``'<user@host.com>'`` as well as
297 ``'user@host.com'``, but not with ``'<user@host.com'``.
298
299 .. versionadded:: 2.4
300
301The special sequences consist of ``'\'`` and a character from the list below.
302If the ordinary character is not on the list, then the resulting RE will match
303the second character. For example, ``\$`` matches the character ``'$'``.
304
Georg Brandl8ec7f652007-08-15 14:28:01 +0000305``\number``
306 Matches the contents of the group of the same number. Groups are numbered
307 starting from 1. For example, ``(.+) \1`` matches ``'the the'`` or ``'55 55'``,
308 but not ``'the end'`` (note the space after the group). This special sequence
309 can only be used to match one of the first 99 groups. If the first digit of
310 *number* is 0, or *number* is 3 octal digits long, it will not be interpreted as
311 a group match, but as the character with octal value *number*. Inside the
312 ``'['`` and ``']'`` of a character class, all numeric escapes are treated as
313 characters.
314
315``\A``
316 Matches only at the start of the string.
317
318``\b``
319 Matches the empty string, but only at the beginning or end of a word. A word is
320 defined as a sequence of alphanumeric or underscore characters, so the end of a
321 word is indicated by whitespace or a non-alphanumeric, non-underscore character.
Eric Smithba328642010-05-09 14:07:57 +0000322 Note that ``\b`` is defined as the boundary between ``\w`` and ``\W``, so the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000323 precise set of characters deemed to be alphanumeric depends on the values of the
324 ``UNICODE`` and ``LOCALE`` flags. Inside a character range, ``\b`` represents
325 the backspace character, for compatibility with Python's string literals.
326
327``\B``
328 Matches the empty string, but only when it is *not* at the beginning or end of a
329 word. This is just the opposite of ``\b``, so is also subject to the settings
330 of ``LOCALE`` and ``UNICODE``.
331
332``\d``
333 When the :const:`UNICODE` flag is not specified, matches any decimal digit; this
334 is equivalent to the set ``[0-9]``. With :const:`UNICODE`, it will match
335 whatever is classified as a digit in the Unicode character properties database.
336
337``\D``
338 When the :const:`UNICODE` flag is not specified, matches any non-digit
339 character; this is equivalent to the set ``[^0-9]``. With :const:`UNICODE`, it
340 will match anything other than character marked as digits in the Unicode
341 character properties database.
342
343``\s``
344 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches
345 any whitespace character; this is equivalent to the set ``[ \t\n\r\f\v]``. With
346 :const:`LOCALE`, it will match this set plus whatever characters are defined as
347 space for the current locale. If :const:`UNICODE` is set, this will match the
348 characters ``[ \t\n\r\f\v]`` plus whatever is classified as space in the Unicode
349 character properties database.
350
351``\S``
352 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches
353 any non-whitespace character; this is equivalent to the set ``[^ \t\n\r\f\v]``
354 With :const:`LOCALE`, it will match any character not in this set, and not
355 defined as space in the current locale. If :const:`UNICODE` is set, this will
356 match anything other than ``[ \t\n\r\f\v]`` and characters marked as space in
357 the Unicode character properties database.
358
359``\w``
360 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches
361 any alphanumeric character and the underscore; this is equivalent to the set
362 ``[a-zA-Z0-9_]``. With :const:`LOCALE`, it will match the set ``[0-9_]`` plus
363 whatever characters are defined as alphanumeric for the current locale. If
364 :const:`UNICODE` is set, this will match the characters ``[0-9_]`` plus whatever
365 is classified as alphanumeric in the Unicode character properties database.
366
367``\W``
368 When the :const:`LOCALE` and :const:`UNICODE` flags are not specified, matches
369 any non-alphanumeric character; this is equivalent to the set ``[^a-zA-Z0-9_]``.
370 With :const:`LOCALE`, it will match any character not in the set ``[0-9_]``, and
371 not defined as alphanumeric for the current locale. If :const:`UNICODE` is set,
372 this will match anything other than ``[0-9_]`` and characters marked as
373 alphanumeric in the Unicode character properties database.
374
375``\Z``
376 Matches only at the end of the string.
377
378Most of the standard escapes supported by Python string literals are also
379accepted by the regular expression parser::
380
381 \a \b \f \n
382 \r \t \v \x
383 \\
384
385Octal escapes are included in a limited form: If the first digit is a 0, or if
386there are three octal digits, it is considered an octal escape. Otherwise, it is
387a group reference. As for string literals, octal escapes are always at most
388three digits in length.
389
Georg Brandl8ec7f652007-08-15 14:28:01 +0000390
391.. _matching-searching:
392
393Matching vs Searching
394---------------------
395
396.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
397
398
399Python offers two different primitive operations based on regular expressions:
Georg Brandl604c1212007-08-23 21:36:05 +0000400**match** checks for a match only at the beginning of the string, while
401**search** checks for a match anywhere in the string (this is what Perl does
402by default).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000403
Georg Brandl604c1212007-08-23 21:36:05 +0000404Note that match may differ from search even when using a regular expression
405beginning with ``'^'``: ``'^'`` matches only at the start of the string, or in
Georg Brandl8ec7f652007-08-15 14:28:01 +0000406:const:`MULTILINE` mode also immediately following a newline. The "match"
407operation succeeds only if the pattern matches at the start of the string
408regardless of mode, or at the starting position given by the optional *pos*
Georg Brandl6199e322008-03-22 12:04:26 +0000409argument regardless of whether a newline precedes it.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000410
Georg Brandl6199e322008-03-22 12:04:26 +0000411 >>> re.match("c", "abcdef") # No match
412 >>> re.search("c", "abcdef") # Match
413 <_sre.SRE_Match object at ...>
Georg Brandl8ec7f652007-08-15 14:28:01 +0000414
415
416.. _contents-of-module-re:
417
418Module Contents
419---------------
420
421The module defines several functions, constants, and an exception. Some of the
422functions are simplified versions of the full featured methods for compiled
423regular expressions. Most non-trivial applications always use the compiled
424form.
425
426
427.. function:: compile(pattern[, flags])
428
Georg Brandlba2e5192007-09-27 06:26:58 +0000429 Compile a regular expression pattern into a regular expression object, which
430 can be used for matching using its :func:`match` and :func:`search` methods,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000431 described below.
432
433 The expression's behaviour can be modified by specifying a *flags* value.
434 Values can be any of the following variables, combined using bitwise OR (the
435 ``|`` operator).
436
437 The sequence ::
438
Gregory P. Smith13b19c12009-03-02 05:25:11 +0000439 prog = re.compile(pattern)
440 result = prog.match(string)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000441
442 is equivalent to ::
443
Gregory P. Smith13b19c12009-03-02 05:25:11 +0000444 result = re.match(pattern, string)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000445
Georg Brandlcda25a12009-10-27 14:34:21 +0000446 but using :func:`re.compile` and saving the resulting regular expression
447 object for reuse is more efficient when the expression will be used several
448 times in a single program.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000449
Gregory P. Smith13b19c12009-03-02 05:25:11 +0000450 .. note::
451
452 The compiled versions of the most recent patterns passed to
453 :func:`re.match`, :func:`re.search` or :func:`re.compile` are cached, so
454 programs that use only a few regular expressions at a time needn't worry
455 about compiling regular expressions.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000456
457
458.. data:: I
459 IGNORECASE
460
461 Perform case-insensitive matching; expressions like ``[A-Z]`` will match
462 lowercase letters, too. This is not affected by the current locale.
463
464
465.. data:: L
466 LOCALE
467
Georg Brandlba2e5192007-09-27 06:26:58 +0000468 Make ``\w``, ``\W``, ``\b``, ``\B``, ``\s`` and ``\S`` dependent on the
469 current locale.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000470
471
472.. data:: M
473 MULTILINE
474
475 When specified, the pattern character ``'^'`` matches at the beginning of the
476 string and at the beginning of each line (immediately following each newline);
477 and the pattern character ``'$'`` matches at the end of the string and at the
478 end of each line (immediately preceding each newline). By default, ``'^'``
479 matches only at the beginning of the string, and ``'$'`` only at the end of the
480 string and immediately before the newline (if any) at the end of the string.
481
482
483.. data:: S
484 DOTALL
485
486 Make the ``'.'`` special character match any character at all, including a
487 newline; without this flag, ``'.'`` will match anything *except* a newline.
488
489
490.. data:: U
491 UNICODE
492
493 Make ``\w``, ``\W``, ``\b``, ``\B``, ``\d``, ``\D``, ``\s`` and ``\S`` dependent
494 on the Unicode character properties database.
495
496 .. versionadded:: 2.0
497
498
499.. data:: X
500 VERBOSE
501
502 This flag allows you to write regular expressions that look nicer. Whitespace
503 within the pattern is ignored, except when in a character class or preceded by
504 an unescaped backslash, and, when a line contains a ``'#'`` neither in a
505 character class or preceded by an unescaped backslash, all characters from the
506 leftmost such ``'#'`` through the end of the line are ignored.
507
Georg Brandlb8df1562007-12-05 18:30:48 +0000508 That means that the two following regular expression objects that match a
509 decimal number are functionally equal::
510
511 a = re.compile(r"""\d + # the integral part
512 \. # the decimal point
513 \d * # some fractional digits""", re.X)
514 b = re.compile(r"\d+\.\d*")
Georg Brandl8ec7f652007-08-15 14:28:01 +0000515
516
517.. function:: search(pattern, string[, flags])
518
519 Scan through *string* looking for a location where the regular expression
520 *pattern* produces a match, and return a corresponding :class:`MatchObject`
521 instance. Return ``None`` if no position in the string matches the pattern; note
522 that this is different from finding a zero-length match at some point in the
523 string.
524
525
526.. function:: match(pattern, string[, flags])
527
528 If zero or more characters at the beginning of *string* match the regular
529 expression *pattern*, return a corresponding :class:`MatchObject` instance.
530 Return ``None`` if the string does not match the pattern; note that this is
531 different from a zero-length match.
532
533 .. note::
534
Georg Brandlcda25a12009-10-27 14:34:21 +0000535 If you want to locate a match anywhere in *string*, use :func:`search`
Georg Brandlb8df1562007-12-05 18:30:48 +0000536 instead.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000537
538
539.. function:: split(pattern, string[, maxsplit=0])
540
541 Split *string* by the occurrences of *pattern*. If capturing parentheses are
542 used in *pattern*, then the text of all groups in the pattern are also returned
543 as part of the resulting list. If *maxsplit* is nonzero, at most *maxsplit*
544 splits occur, and the remainder of the string is returned as the final element
545 of the list. (Incompatibility note: in the original Python 1.5 release,
Georg Brandl6199e322008-03-22 12:04:26 +0000546 *maxsplit* was ignored. This has been fixed in later releases.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000547
548 >>> re.split('\W+', 'Words, words, words.')
549 ['Words', 'words', 'words', '']
550 >>> re.split('(\W+)', 'Words, words, words.')
551 ['Words', ', ', 'words', ', ', 'words', '.', '']
552 >>> re.split('\W+', 'Words, words, words.', 1)
553 ['Words', 'words, words.']
554
Georg Brandl70992c32008-03-06 07:19:15 +0000555 If there are capturing groups in the separator and it matches at the start of
556 the string, the result will start with an empty string. The same holds for
Georg Brandl6199e322008-03-22 12:04:26 +0000557 the end of the string:
Georg Brandl70992c32008-03-06 07:19:15 +0000558
559 >>> re.split('(\W+)', '...words, words...')
560 ['', '...', 'words', ', ', 'words', '...', '']
561
562 That way, separator components are always found at the same relative
563 indices within the result list (e.g., if there's one capturing group
564 in the separator, the 0th, the 2nd and so forth).
565
Skip Montanaro222907d2007-09-01 17:40:03 +0000566 Note that *split* will never split a string on an empty pattern match.
Georg Brandl6199e322008-03-22 12:04:26 +0000567 For example:
Skip Montanaro222907d2007-09-01 17:40:03 +0000568
569 >>> re.split('x*', 'foo')
570 ['foo']
571 >>> re.split("(?m)^$", "foo\n\nbar\n")
572 ['foo\n\nbar\n']
Georg Brandl8ec7f652007-08-15 14:28:01 +0000573
Georg Brandl70992c32008-03-06 07:19:15 +0000574
Georg Brandl8ec7f652007-08-15 14:28:01 +0000575.. function:: findall(pattern, string[, flags])
576
Georg Brandlba2e5192007-09-27 06:26:58 +0000577 Return all non-overlapping matches of *pattern* in *string*, as a list of
Georg Brandlb46d6ff2008-07-19 13:48:44 +0000578 strings. The *string* is scanned left-to-right, and matches are returned in
579 the order found. If one or more groups are present in the pattern, return a
580 list of groups; this will be a list of tuples if the pattern has more than
581 one group. Empty matches are included in the result unless they touch the
582 beginning of another match.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000583
584 .. versionadded:: 1.5.2
585
586 .. versionchanged:: 2.4
587 Added the optional flags argument.
588
589
590.. function:: finditer(pattern, string[, flags])
591
Georg Brandle7a09902007-10-21 12:10:28 +0000592 Return an :term:`iterator` yielding :class:`MatchObject` instances over all
Georg Brandlb46d6ff2008-07-19 13:48:44 +0000593 non-overlapping matches for the RE *pattern* in *string*. The *string* is
594 scanned left-to-right, and matches are returned in the order found. Empty
595 matches are included in the result unless they touch the beginning of another
596 match.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000597
598 .. versionadded:: 2.2
599
600 .. versionchanged:: 2.4
601 Added the optional flags argument.
602
603
604.. function:: sub(pattern, repl, string[, count])
605
606 Return the string obtained by replacing the leftmost non-overlapping occurrences
607 of *pattern* in *string* by the replacement *repl*. If the pattern isn't found,
608 *string* is returned unchanged. *repl* can be a string or a function; if it is
609 a string, any backslash escapes in it are processed. That is, ``\n`` is
610 converted to a single newline character, ``\r`` is converted to a linefeed, and
611 so forth. Unknown escapes such as ``\j`` are left alone. Backreferences, such
612 as ``\6``, are replaced with the substring matched by group 6 in the pattern.
Georg Brandl6199e322008-03-22 12:04:26 +0000613 For example:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000614
615 >>> re.sub(r'def\s+([a-zA-Z_][a-zA-Z_0-9]*)\s*\(\s*\):',
616 ... r'static PyObject*\npy_\1(void)\n{',
617 ... 'def myfunc():')
618 'static PyObject*\npy_myfunc(void)\n{'
619
620 If *repl* is a function, it is called for every non-overlapping occurrence of
621 *pattern*. The function takes a single match object argument, and returns the
Georg Brandl6199e322008-03-22 12:04:26 +0000622 replacement string. For example:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000623
624 >>> def dashrepl(matchobj):
625 ... if matchobj.group(0) == '-': return ' '
626 ... else: return '-'
627 >>> re.sub('-{1,2}', dashrepl, 'pro----gram-files')
628 'pro--gram files'
629
630 The pattern may be a string or an RE object; if you need to specify regular
631 expression flags, you must use a RE object, or use embedded modifiers in a
632 pattern; for example, ``sub("(?i)b+", "x", "bbbb BBBB")`` returns ``'x x'``.
633
634 The optional argument *count* is the maximum number of pattern occurrences to be
635 replaced; *count* must be a non-negative integer. If omitted or zero, all
636 occurrences will be replaced. Empty matches for the pattern are replaced only
637 when not adjacent to a previous match, so ``sub('x*', '-', 'abc')`` returns
638 ``'-a-b-c-'``.
639
640 In addition to character escapes and backreferences as described above,
641 ``\g<name>`` will use the substring matched by the group named ``name``, as
642 defined by the ``(?P<name>...)`` syntax. ``\g<number>`` uses the corresponding
643 group number; ``\g<2>`` is therefore equivalent to ``\2``, but isn't ambiguous
644 in a replacement such as ``\g<2>0``. ``\20`` would be interpreted as a
645 reference to group 20, not a reference to group 2 followed by the literal
646 character ``'0'``. The backreference ``\g<0>`` substitutes in the entire
647 substring matched by the RE.
648
649
650.. function:: subn(pattern, repl, string[, count])
651
652 Perform the same operation as :func:`sub`, but return a tuple ``(new_string,
653 number_of_subs_made)``.
654
655
656.. function:: escape(string)
657
658 Return *string* with all non-alphanumerics backslashed; this is useful if you
659 want to match an arbitrary literal string that may have regular expression
660 metacharacters in it.
661
662
663.. exception:: error
664
665 Exception raised when a string passed to one of the functions here is not a
666 valid regular expression (for example, it might contain unmatched parentheses)
667 or when some other error occurs during compilation or matching. It is never an
668 error if a string contains no match for a pattern.
669
670
671.. _re-objects:
672
673Regular Expression Objects
674--------------------------
675
Brian Curtinb5f06272010-03-25 23:56:05 +0000676.. class:: RegexObject
677
678 The :class:`RegexObject` class supports the following methods and attributes:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000679
Georg Brandla0b86672010-06-01 23:21:12 +0000680 .. method:: RegexObject.search(string[, pos[, endpos]])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000681
Georg Brandla0b86672010-06-01 23:21:12 +0000682 Scan through *string* looking for a location where this regular expression
683 produces a match, and return a corresponding :class:`MatchObject` instance.
684 Return ``None`` if no position in the string matches the pattern; note that this
685 is different from finding a zero-length match at some point in the string.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000686
Brian Curtinb5f06272010-03-25 23:56:05 +0000687 The optional second parameter *pos* gives an index in the string where the
688 search is to start; it defaults to ``0``. This is not completely equivalent to
689 slicing the string; the ``'^'`` pattern character matches at the real beginning
690 of the string and at positions just after a newline, but not necessarily at the
691 index where the search is to start.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000692
Brian Curtinb5f06272010-03-25 23:56:05 +0000693 The optional parameter *endpos* limits how far the string will be searched; it
694 will be as if the string is *endpos* characters long, so only the characters
695 from *pos* to ``endpos - 1`` will be searched for a match. If *endpos* is less
696 than *pos*, no match will be found, otherwise, if *rx* is a compiled regular
Georg Brandla0b86672010-06-01 23:21:12 +0000697 expression object, ``rx.search(string, 0, 50)`` is equivalent to
698 ``rx.search(string[:50], 0)``.
Georg Brandlb8df1562007-12-05 18:30:48 +0000699
Georg Brandla0b86672010-06-01 23:21:12 +0000700 >>> pattern = re.compile("d")
701 >>> pattern.search("dog") # Match at index 0
702 <_sre.SRE_Match object at ...>
703 >>> pattern.search("dog", 1) # No match; search doesn't include the "d"
Georg Brandl8ec7f652007-08-15 14:28:01 +0000704
705
Georg Brandla0b86672010-06-01 23:21:12 +0000706 .. method:: RegexObject.match(string[, pos[, endpos]])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000707
Georg Brandla0b86672010-06-01 23:21:12 +0000708 If zero or more characters at the *beginning* of *string* match this regular
709 expression, return a corresponding :class:`MatchObject` instance. Return
710 ``None`` if the string does not match the pattern; note that this is different
711 from a zero-length match.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000712
Brian Curtinb5f06272010-03-25 23:56:05 +0000713 The optional *pos* and *endpos* parameters have the same meaning as for the
Georg Brandla0b86672010-06-01 23:21:12 +0000714 :meth:`~RegexObject.search` method.
715
716 .. note::
717
718 If you want to locate a match anywhere in *string*, use
719 :meth:`~RegexObject.search` instead.
720
721 >>> pattern = re.compile("o")
722 >>> pattern.match("dog") # No match as "o" is not at the start of "dog".
723 >>> pattern.match("dog", 1) # Match as "o" is the 2nd character of "dog".
724 <_sre.SRE_Match object at ...>
Georg Brandl8ec7f652007-08-15 14:28:01 +0000725
726
Brian Curtinb5f06272010-03-25 23:56:05 +0000727 .. method:: RegexObject.split(string[, maxsplit=0])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000728
Brian Curtinb5f06272010-03-25 23:56:05 +0000729 Identical to the :func:`split` function, using the compiled pattern.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000730
731
Brian Curtinb5f06272010-03-25 23:56:05 +0000732 .. method:: RegexObject.findall(string[, pos[, endpos]])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000733
Georg Brandla10d64f2010-05-22 08:21:45 +0000734 Similar to the :func:`findall` function, using the compiled pattern, but
735 also accepts optional *pos* and *endpos* parameters that limit the search
736 region like for :meth:`match`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000737
738
Brian Curtinb5f06272010-03-25 23:56:05 +0000739 .. method:: RegexObject.finditer(string[, pos[, endpos]])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000740
Georg Brandla10d64f2010-05-22 08:21:45 +0000741 Similar to the :func:`finditer` function, using the compiled pattern, but
742 also accepts optional *pos* and *endpos* parameters that limit the search
743 region like for :meth:`match`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000744
745
Brian Curtinb5f06272010-03-25 23:56:05 +0000746 .. method:: RegexObject.sub(repl, string[, count=0])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000747
Brian Curtinb5f06272010-03-25 23:56:05 +0000748 Identical to the :func:`sub` function, using the compiled pattern.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000749
750
Brian Curtinb5f06272010-03-25 23:56:05 +0000751 .. method:: RegexObject.subn(repl, string[, count=0])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000752
Brian Curtinb5f06272010-03-25 23:56:05 +0000753 Identical to the :func:`subn` function, using the compiled pattern.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000754
755
Brian Curtinb5f06272010-03-25 23:56:05 +0000756 .. attribute:: RegexObject.flags
Georg Brandl8ec7f652007-08-15 14:28:01 +0000757
Brian Curtinb5f06272010-03-25 23:56:05 +0000758 The flags argument used when the RE object was compiled, or ``0`` if no flags
759 were provided.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000760
761
Brian Curtinb5f06272010-03-25 23:56:05 +0000762 .. attribute:: RegexObject.groups
Georg Brandlfa71a902008-12-05 09:08:28 +0000763
Brian Curtinb5f06272010-03-25 23:56:05 +0000764 The number of capturing groups in the pattern.
Georg Brandlfa71a902008-12-05 09:08:28 +0000765
766
Brian Curtinb5f06272010-03-25 23:56:05 +0000767 .. attribute:: RegexObject.groupindex
Georg Brandl8ec7f652007-08-15 14:28:01 +0000768
Brian Curtinb5f06272010-03-25 23:56:05 +0000769 A dictionary mapping any symbolic group names defined by ``(?P<id>)`` to group
770 numbers. The dictionary is empty if no symbolic groups were used in the
771 pattern.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000772
773
Brian Curtinb5f06272010-03-25 23:56:05 +0000774 .. attribute:: RegexObject.pattern
Georg Brandl8ec7f652007-08-15 14:28:01 +0000775
Brian Curtinb5f06272010-03-25 23:56:05 +0000776 The pattern string from which the RE object was compiled.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000777
778
779.. _match-objects:
780
781Match Objects
782-------------
783
Brian Curtinb5f06272010-03-25 23:56:05 +0000784.. class:: MatchObject
785
786 Match Objects always have a boolean value of :const:`True`, so that you can test
787 whether e.g. :func:`match` resulted in a match with a simple if statement. They
788 support the following methods and attributes:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000789
790
Brian Curtinb5f06272010-03-25 23:56:05 +0000791 .. method:: MatchObject.expand(template)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000792
Brian Curtinb5f06272010-03-25 23:56:05 +0000793 Return the string obtained by doing backslash substitution on the template
794 string *template*, as done by the :meth:`~RegexObject.sub` method. Escapes
795 such as ``\n`` are converted to the appropriate characters, and numeric
796 backreferences (``\1``, ``\2``) and named backreferences (``\g<1>``,
797 ``\g<name>``) are replaced by the contents of the corresponding group.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000798
799
Brian Curtinb5f06272010-03-25 23:56:05 +0000800 .. method:: MatchObject.group([group1, ...])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000801
Brian Curtinb5f06272010-03-25 23:56:05 +0000802 Returns one or more subgroups of the match. If there is a single argument, the
803 result is a single string; if there are multiple arguments, the result is a
804 tuple with one item per argument. Without arguments, *group1* defaults to zero
805 (the whole match is returned). If a *groupN* argument is zero, the corresponding
806 return value is the entire matching string; if it is in the inclusive range
807 [1..99], it is the string matching the corresponding parenthesized group. If a
808 group number is negative or larger than the number of groups defined in the
809 pattern, an :exc:`IndexError` exception is raised. If a group is contained in a
810 part of the pattern that did not match, the corresponding result is ``None``.
811 If a group is contained in a part of the pattern that matched multiple times,
812 the last match is returned.
Georg Brandlb8df1562007-12-05 18:30:48 +0000813
Brian Curtinb5f06272010-03-25 23:56:05 +0000814 >>> m = re.match(r"(\w+) (\w+)", "Isaac Newton, physicist")
815 >>> m.group(0) # The entire match
816 'Isaac Newton'
817 >>> m.group(1) # The first parenthesized subgroup.
818 'Isaac'
819 >>> m.group(2) # The second parenthesized subgroup.
820 'Newton'
821 >>> m.group(1, 2) # Multiple arguments give us a tuple.
822 ('Isaac', 'Newton')
Georg Brandl8ec7f652007-08-15 14:28:01 +0000823
Brian Curtinb5f06272010-03-25 23:56:05 +0000824 If the regular expression uses the ``(?P<name>...)`` syntax, the *groupN*
825 arguments may also be strings identifying groups by their group name. If a
826 string argument is not used as a group name in the pattern, an :exc:`IndexError`
827 exception is raised.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000828
Brian Curtinb5f06272010-03-25 23:56:05 +0000829 A moderately complicated example:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000830
Brian Curtinb5f06272010-03-25 23:56:05 +0000831 >>> m = re.match(r"(?P<first_name>\w+) (?P<last_name>\w+)", "Malcolm Reynolds")
832 >>> m.group('first_name')
833 'Malcolm'
834 >>> m.group('last_name')
835 'Reynolds'
Georg Brandl8ec7f652007-08-15 14:28:01 +0000836
Brian Curtinb5f06272010-03-25 23:56:05 +0000837 Named groups can also be referred to by their index:
Georg Brandlb8df1562007-12-05 18:30:48 +0000838
Brian Curtinb5f06272010-03-25 23:56:05 +0000839 >>> m.group(1)
840 'Malcolm'
841 >>> m.group(2)
842 'Reynolds'
Georg Brandlb8df1562007-12-05 18:30:48 +0000843
Brian Curtinb5f06272010-03-25 23:56:05 +0000844 If a group matches multiple times, only the last match is accessible:
Georg Brandl6199e322008-03-22 12:04:26 +0000845
Brian Curtinb5f06272010-03-25 23:56:05 +0000846 >>> m = re.match(r"(..)+", "a1b2c3") # Matches 3 times.
847 >>> m.group(1) # Returns only the last match.
848 'c3'
Georg Brandl8ec7f652007-08-15 14:28:01 +0000849
850
Brian Curtinb5f06272010-03-25 23:56:05 +0000851 .. method:: MatchObject.groups([default])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000852
Brian Curtinb5f06272010-03-25 23:56:05 +0000853 Return a tuple containing all the subgroups of the match, from 1 up to however
854 many groups are in the pattern. The *default* argument is used for groups that
855 did not participate in the match; it defaults to ``None``. (Incompatibility
856 note: in the original Python 1.5 release, if the tuple was one element long, a
857 string would be returned instead. In later versions (from 1.5.1 on), a
858 singleton tuple is returned in such cases.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000859
Brian Curtinb5f06272010-03-25 23:56:05 +0000860 For example:
Georg Brandlb8df1562007-12-05 18:30:48 +0000861
Brian Curtinb5f06272010-03-25 23:56:05 +0000862 >>> m = re.match(r"(\d+)\.(\d+)", "24.1632")
863 >>> m.groups()
864 ('24', '1632')
Georg Brandlb8df1562007-12-05 18:30:48 +0000865
Brian Curtinb5f06272010-03-25 23:56:05 +0000866 If we make the decimal place and everything after it optional, not all groups
867 might participate in the match. These groups will default to ``None`` unless
868 the *default* argument is given:
Georg Brandlb8df1562007-12-05 18:30:48 +0000869
Brian Curtinb5f06272010-03-25 23:56:05 +0000870 >>> m = re.match(r"(\d+)\.?(\d+)?", "24")
871 >>> m.groups() # Second group defaults to None.
872 ('24', None)
873 >>> m.groups('0') # Now, the second group defaults to '0'.
874 ('24', '0')
Georg Brandlb8df1562007-12-05 18:30:48 +0000875
Georg Brandl8ec7f652007-08-15 14:28:01 +0000876
Brian Curtinb5f06272010-03-25 23:56:05 +0000877 .. method:: MatchObject.groupdict([default])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000878
Brian Curtinb5f06272010-03-25 23:56:05 +0000879 Return a dictionary containing all the *named* subgroups of the match, keyed by
880 the subgroup name. The *default* argument is used for groups that did not
881 participate in the match; it defaults to ``None``. For example:
Georg Brandlb8df1562007-12-05 18:30:48 +0000882
Brian Curtinb5f06272010-03-25 23:56:05 +0000883 >>> m = re.match(r"(?P<first_name>\w+) (?P<last_name>\w+)", "Malcolm Reynolds")
884 >>> m.groupdict()
885 {'first_name': 'Malcolm', 'last_name': 'Reynolds'}
Georg Brandl8ec7f652007-08-15 14:28:01 +0000886
887
Brian Curtinb5f06272010-03-25 23:56:05 +0000888 .. method:: MatchObject.start([group])
889 MatchObject.end([group])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000890
Brian Curtinb5f06272010-03-25 23:56:05 +0000891 Return the indices of the start and end of the substring matched by *group*;
892 *group* defaults to zero (meaning the whole matched substring). Return ``-1`` if
893 *group* exists but did not contribute to the match. For a match object *m*, and
894 a group *g* that did contribute to the match, the substring matched by group *g*
895 (equivalent to ``m.group(g)``) is ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000896
Brian Curtinb5f06272010-03-25 23:56:05 +0000897 m.string[m.start(g):m.end(g)]
Georg Brandl8ec7f652007-08-15 14:28:01 +0000898
Brian Curtinb5f06272010-03-25 23:56:05 +0000899 Note that ``m.start(group)`` will equal ``m.end(group)`` if *group* matched a
900 null string. For example, after ``m = re.search('b(c?)', 'cba')``,
901 ``m.start(0)`` is 1, ``m.end(0)`` is 2, ``m.start(1)`` and ``m.end(1)`` are both
902 2, and ``m.start(2)`` raises an :exc:`IndexError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000903
Brian Curtinb5f06272010-03-25 23:56:05 +0000904 An example that will remove *remove_this* from email addresses:
Georg Brandlb8df1562007-12-05 18:30:48 +0000905
Brian Curtinb5f06272010-03-25 23:56:05 +0000906 >>> email = "tony@tiremove_thisger.net"
907 >>> m = re.search("remove_this", email)
908 >>> email[:m.start()] + email[m.end():]
909 'tony@tiger.net'
Georg Brandlb8df1562007-12-05 18:30:48 +0000910
Georg Brandl8ec7f652007-08-15 14:28:01 +0000911
Brian Curtinb5f06272010-03-25 23:56:05 +0000912 .. method:: MatchObject.span([group])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000913
Brian Curtinb5f06272010-03-25 23:56:05 +0000914 For :class:`MatchObject` *m*, return the 2-tuple ``(m.start(group),
915 m.end(group))``. Note that if *group* did not contribute to the match, this is
916 ``(-1, -1)``. *group* defaults to zero, the entire match.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000917
918
Brian Curtinb5f06272010-03-25 23:56:05 +0000919 .. attribute:: MatchObject.pos
Georg Brandl8ec7f652007-08-15 14:28:01 +0000920
Brian Curtinb5f06272010-03-25 23:56:05 +0000921 The value of *pos* which was passed to the :meth:`~RegexObject.search` or
922 :meth:`~RegexObject.match` method of the :class:`RegexObject`. This is the
923 index into the string at which the RE engine started looking for a match.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000924
925
Brian Curtinb5f06272010-03-25 23:56:05 +0000926 .. attribute:: MatchObject.endpos
Georg Brandl8ec7f652007-08-15 14:28:01 +0000927
Brian Curtinb5f06272010-03-25 23:56:05 +0000928 The value of *endpos* which was passed to the :meth:`~RegexObject.search` or
929 :meth:`~RegexObject.match` method of the :class:`RegexObject`. This is the
930 index into the string beyond which the RE engine will not go.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000931
932
Brian Curtinb5f06272010-03-25 23:56:05 +0000933 .. attribute:: MatchObject.lastindex
Georg Brandl8ec7f652007-08-15 14:28:01 +0000934
Brian Curtinb5f06272010-03-25 23:56:05 +0000935 The integer index of the last matched capturing group, or ``None`` if no group
936 was matched at all. For example, the expressions ``(a)b``, ``((a)(b))``, and
937 ``((ab))`` will have ``lastindex == 1`` if applied to the string ``'ab'``, while
938 the expression ``(a)(b)`` will have ``lastindex == 2``, if applied to the same
939 string.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000940
941
Brian Curtinb5f06272010-03-25 23:56:05 +0000942 .. attribute:: MatchObject.lastgroup
Georg Brandl8ec7f652007-08-15 14:28:01 +0000943
Brian Curtinb5f06272010-03-25 23:56:05 +0000944 The name of the last matched capturing group, or ``None`` if the group didn't
945 have a name, or if no group was matched at all.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000946
947
Brian Curtinb5f06272010-03-25 23:56:05 +0000948 .. attribute:: MatchObject.re
Georg Brandl8ec7f652007-08-15 14:28:01 +0000949
Brian Curtinb5f06272010-03-25 23:56:05 +0000950 The regular expression object whose :meth:`~RegexObject.match` or
951 :meth:`~RegexObject.search` method produced this :class:`MatchObject`
952 instance.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000953
954
Brian Curtinb5f06272010-03-25 23:56:05 +0000955 .. attribute:: MatchObject.string
Georg Brandl8ec7f652007-08-15 14:28:01 +0000956
Brian Curtinb5f06272010-03-25 23:56:05 +0000957 The string passed to :meth:`~RegexObject.match` or
958 :meth:`~RegexObject.search`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000959
960
961Examples
962--------
963
Georg Brandlb8df1562007-12-05 18:30:48 +0000964
965Checking For a Pair
966^^^^^^^^^^^^^^^^^^^
967
968In this example, we'll use the following helper function to display match
Georg Brandl6199e322008-03-22 12:04:26 +0000969objects a little more gracefully:
970
Georg Brandl838b4b02008-03-22 13:07:06 +0000971.. testcode::
Georg Brandlb8df1562007-12-05 18:30:48 +0000972
973 def displaymatch(match):
974 if match is None:
975 return None
976 return '<Match: %r, groups=%r>' % (match.group(), match.groups())
977
978Suppose you are writing a poker program where a player's hand is represented as
979a 5-character string with each character representing a card, "a" for ace, "k"
980for king, "q" for queen, j for jack, "0" for 10, and "1" through "9"
981representing the card with that value.
982
Georg Brandl6199e322008-03-22 12:04:26 +0000983To see if a given string is a valid hand, one could do the following:
Georg Brandlb8df1562007-12-05 18:30:48 +0000984
Georg Brandl6199e322008-03-22 12:04:26 +0000985 >>> valid = re.compile(r"[0-9akqj]{5}$")
Georg Brandlb8df1562007-12-05 18:30:48 +0000986 >>> displaymatch(valid.match("ak05q")) # Valid.
Georg Brandl6199e322008-03-22 12:04:26 +0000987 "<Match: 'ak05q', groups=()>"
Georg Brandlb8df1562007-12-05 18:30:48 +0000988 >>> displaymatch(valid.match("ak05e")) # Invalid.
989 >>> displaymatch(valid.match("ak0")) # Invalid.
990 >>> displaymatch(valid.match("727ak")) # Valid.
Georg Brandl6199e322008-03-22 12:04:26 +0000991 "<Match: '727ak', groups=()>"
Georg Brandlb8df1562007-12-05 18:30:48 +0000992
993That last hand, ``"727ak"``, contained a pair, or two of the same valued cards.
Georg Brandl6199e322008-03-22 12:04:26 +0000994To match this with a regular expression, one could use backreferences as such:
Georg Brandlb8df1562007-12-05 18:30:48 +0000995
996 >>> pair = re.compile(r".*(.).*\1")
997 >>> displaymatch(pair.match("717ak")) # Pair of 7s.
Georg Brandl6199e322008-03-22 12:04:26 +0000998 "<Match: '717', groups=('7',)>"
Georg Brandlb8df1562007-12-05 18:30:48 +0000999 >>> displaymatch(pair.match("718ak")) # No pairs.
1000 >>> displaymatch(pair.match("354aa")) # Pair of aces.
Georg Brandl6199e322008-03-22 12:04:26 +00001001 "<Match: '354aa', groups=('a',)>"
Georg Brandlb8df1562007-12-05 18:30:48 +00001002
Georg Brandlcda25a12009-10-27 14:34:21 +00001003To find out what card the pair consists of, one could use the
1004:meth:`~MatchObject.group` method of :class:`MatchObject` in the following
1005manner:
Georg Brandl6199e322008-03-22 12:04:26 +00001006
Georg Brandl838b4b02008-03-22 13:07:06 +00001007.. doctest::
Georg Brandlb8df1562007-12-05 18:30:48 +00001008
1009 >>> pair.match("717ak").group(1)
1010 '7'
Georg Brandl734373c2009-01-03 21:55:17 +00001011
Georg Brandlb8df1562007-12-05 18:30:48 +00001012 # Error because re.match() returns None, which doesn't have a group() method:
1013 >>> pair.match("718ak").group(1)
1014 Traceback (most recent call last):
1015 File "<pyshell#23>", line 1, in <module>
1016 re.match(r".*(.).*\1", "718ak").group(1)
1017 AttributeError: 'NoneType' object has no attribute 'group'
Georg Brandl734373c2009-01-03 21:55:17 +00001018
Georg Brandlb8df1562007-12-05 18:30:48 +00001019 >>> pair.match("354aa").group(1)
1020 'a'
1021
1022
1023Simulating scanf()
1024^^^^^^^^^^^^^^^^^^
Georg Brandl8ec7f652007-08-15 14:28:01 +00001025
1026.. index:: single: scanf()
1027
1028Python does not currently have an equivalent to :cfunc:`scanf`. Regular
1029expressions are generally more powerful, though also more verbose, than
1030:cfunc:`scanf` format strings. The table below offers some more-or-less
1031equivalent mappings between :cfunc:`scanf` format tokens and regular
1032expressions.
1033
1034+--------------------------------+---------------------------------------------+
1035| :cfunc:`scanf` Token | Regular Expression |
1036+================================+=============================================+
1037| ``%c`` | ``.`` |
1038+--------------------------------+---------------------------------------------+
1039| ``%5c`` | ``.{5}`` |
1040+--------------------------------+---------------------------------------------+
1041| ``%d`` | ``[-+]?\d+`` |
1042+--------------------------------+---------------------------------------------+
1043| ``%e``, ``%E``, ``%f``, ``%g`` | ``[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?`` |
1044+--------------------------------+---------------------------------------------+
1045| ``%i`` | ``[-+]?(0[xX][\dA-Fa-f]+|0[0-7]*|\d+)`` |
1046+--------------------------------+---------------------------------------------+
1047| ``%o`` | ``0[0-7]*`` |
1048+--------------------------------+---------------------------------------------+
1049| ``%s`` | ``\S+`` |
1050+--------------------------------+---------------------------------------------+
1051| ``%u`` | ``\d+`` |
1052+--------------------------------+---------------------------------------------+
1053| ``%x``, ``%X`` | ``0[xX][\dA-Fa-f]+`` |
1054+--------------------------------+---------------------------------------------+
1055
1056To extract the filename and numbers from a string like ::
1057
1058 /usr/sbin/sendmail - 0 errors, 4 warnings
1059
1060you would use a :cfunc:`scanf` format like ::
1061
1062 %s - %d errors, %d warnings
1063
1064The equivalent regular expression would be ::
1065
1066 (\S+) - (\d+) errors, (\d+) warnings
1067
Georg Brandlb8df1562007-12-05 18:30:48 +00001068
1069Avoiding recursion
1070^^^^^^^^^^^^^^^^^^
Georg Brandl8ec7f652007-08-15 14:28:01 +00001071
1072If you create regular expressions that require the engine to perform a lot of
1073recursion, you may encounter a :exc:`RuntimeError` exception with the message
1074``maximum recursion limit`` exceeded. For example, ::
1075
Georg Brandl8ec7f652007-08-15 14:28:01 +00001076 >>> s = 'Begin ' + 1000*'a very long string ' + 'end'
1077 >>> re.match('Begin (\w| )*? end', s).end()
1078 Traceback (most recent call last):
1079 File "<stdin>", line 1, in ?
1080 File "/usr/local/lib/python2.5/re.py", line 132, in match
1081 return _compile(pattern, flags).match(string)
1082 RuntimeError: maximum recursion limit exceeded
1083
1084You can often restructure your regular expression to avoid recursion.
1085
1086Starting with Python 2.3, simple uses of the ``*?`` pattern are special-cased to
1087avoid recursion. Thus, the above regular expression can avoid recursion by
1088being recast as ``Begin [a-zA-Z0-9_ ]*?end``. As a further benefit, such
1089regular expressions will run faster than their recursive equivalents.
1090
Georg Brandlb8df1562007-12-05 18:30:48 +00001091
1092search() vs. match()
1093^^^^^^^^^^^^^^^^^^^^
1094
1095In a nutshell, :func:`match` only attempts to match a pattern at the beginning
1096of a string where :func:`search` will match a pattern anywhere in a string.
Georg Brandl6199e322008-03-22 12:04:26 +00001097For example:
Georg Brandlb8df1562007-12-05 18:30:48 +00001098
1099 >>> re.match("o", "dog") # No match as "o" is not the first letter of "dog".
1100 >>> re.search("o", "dog") # Match as search() looks everywhere in the string.
Georg Brandl6199e322008-03-22 12:04:26 +00001101 <_sre.SRE_Match object at ...>
Georg Brandlb8df1562007-12-05 18:30:48 +00001102
1103.. note::
1104
Georg Brandl6199e322008-03-22 12:04:26 +00001105 The following applies only to regular expression objects like those created
1106 with ``re.compile("pattern")``, not the primitives ``re.match(pattern,
1107 string)`` or ``re.search(pattern, string)``.
Georg Brandlb8df1562007-12-05 18:30:48 +00001108
1109:func:`match` has an optional second parameter that gives an index in the string
Georg Brandl40e15ed2009-04-05 21:48:06 +00001110where the search is to start::
Georg Brandlb8df1562007-12-05 18:30:48 +00001111
1112 >>> pattern = re.compile("o")
1113 >>> pattern.match("dog") # No match as "o" is not at the start of "dog."
Georg Brandl6199e322008-03-22 12:04:26 +00001114
Georg Brandlb8df1562007-12-05 18:30:48 +00001115 # Equivalent to the above expression as 0 is the default starting index:
1116 >>> pattern.match("dog", 0)
Georg Brandl6199e322008-03-22 12:04:26 +00001117
Georg Brandlb8df1562007-12-05 18:30:48 +00001118 # Match as "o" is the 2nd character of "dog" (index 0 is the first):
1119 >>> pattern.match("dog", 1)
Georg Brandl6199e322008-03-22 12:04:26 +00001120 <_sre.SRE_Match object at ...>
Georg Brandlb8df1562007-12-05 18:30:48 +00001121 >>> pattern.match("dog", 2) # No match as "o" is not the 3rd character of "dog."
1122
1123
1124Making a Phonebook
1125^^^^^^^^^^^^^^^^^^
1126
Georg Brandl734373c2009-01-03 21:55:17 +00001127:func:`split` splits a string into a list delimited by the passed pattern. The
Georg Brandlb8df1562007-12-05 18:30:48 +00001128method is invaluable for converting textual data into data structures that can be
1129easily read and modified by Python as demonstrated in the following example that
1130creates a phonebook.
1131
Georg Brandld6b20dc2007-12-06 09:45:39 +00001132First, here is the input. Normally it may come from a file, here we are using
Georg Brandl6199e322008-03-22 12:04:26 +00001133triple-quoted string syntax:
Georg Brandlb8df1562007-12-05 18:30:48 +00001134
Georg Brandld6b20dc2007-12-06 09:45:39 +00001135 >>> input = """Ross McFluff: 834.345.1254 155 Elm Street
Georg Brandl734373c2009-01-03 21:55:17 +00001136 ...
Georg Brandl6199e322008-03-22 12:04:26 +00001137 ... Ronald Heathmore: 892.345.3428 436 Finley Avenue
1138 ... Frank Burger: 925.541.7625 662 South Dogwood Way
1139 ...
1140 ...
1141 ... Heather Albrecht: 548.326.4584 919 Park Place"""
Georg Brandld6b20dc2007-12-06 09:45:39 +00001142
1143The entries are separated by one or more newlines. Now we convert the string
Georg Brandl6199e322008-03-22 12:04:26 +00001144into a list with each nonempty line having its own entry:
1145
Georg Brandl838b4b02008-03-22 13:07:06 +00001146.. doctest::
Georg Brandl6199e322008-03-22 12:04:26 +00001147 :options: +NORMALIZE_WHITESPACE
Georg Brandld6b20dc2007-12-06 09:45:39 +00001148
1149 >>> entries = re.split("\n+", input)
Georg Brandlb8df1562007-12-05 18:30:48 +00001150 >>> entries
Georg Brandl6199e322008-03-22 12:04:26 +00001151 ['Ross McFluff: 834.345.1254 155 Elm Street',
1152 'Ronald Heathmore: 892.345.3428 436 Finley Avenue',
1153 'Frank Burger: 925.541.7625 662 South Dogwood Way',
1154 'Heather Albrecht: 548.326.4584 919 Park Place']
Georg Brandlb8df1562007-12-05 18:30:48 +00001155
1156Finally, split each entry into a list with first name, last name, telephone
Georg Brandl907a7202008-02-22 12:31:45 +00001157number, and address. We use the ``maxsplit`` parameter of :func:`split`
Georg Brandl6199e322008-03-22 12:04:26 +00001158because the address has spaces, our splitting pattern, in it:
1159
Georg Brandl838b4b02008-03-22 13:07:06 +00001160.. doctest::
Georg Brandl6199e322008-03-22 12:04:26 +00001161 :options: +NORMALIZE_WHITESPACE
Georg Brandlb8df1562007-12-05 18:30:48 +00001162
Georg Brandld6b20dc2007-12-06 09:45:39 +00001163 >>> [re.split(":? ", entry, 3) for entry in entries]
Georg Brandlb8df1562007-12-05 18:30:48 +00001164 [['Ross', 'McFluff', '834.345.1254', '155 Elm Street'],
1165 ['Ronald', 'Heathmore', '892.345.3428', '436 Finley Avenue'],
1166 ['Frank', 'Burger', '925.541.7625', '662 South Dogwood Way'],
1167 ['Heather', 'Albrecht', '548.326.4584', '919 Park Place']]
1168
Georg Brandld6b20dc2007-12-06 09:45:39 +00001169The ``:?`` pattern matches the colon after the last name, so that it does not
Georg Brandl907a7202008-02-22 12:31:45 +00001170occur in the result list. With a ``maxsplit`` of ``4``, we could separate the
Georg Brandl6199e322008-03-22 12:04:26 +00001171house number from the street name:
1172
Georg Brandl838b4b02008-03-22 13:07:06 +00001173.. doctest::
Georg Brandl6199e322008-03-22 12:04:26 +00001174 :options: +NORMALIZE_WHITESPACE
Georg Brandlb8df1562007-12-05 18:30:48 +00001175
Georg Brandld6b20dc2007-12-06 09:45:39 +00001176 >>> [re.split(":? ", entry, 4) for entry in entries]
Georg Brandlb8df1562007-12-05 18:30:48 +00001177 [['Ross', 'McFluff', '834.345.1254', '155', 'Elm Street'],
1178 ['Ronald', 'Heathmore', '892.345.3428', '436', 'Finley Avenue'],
1179 ['Frank', 'Burger', '925.541.7625', '662', 'South Dogwood Way'],
1180 ['Heather', 'Albrecht', '548.326.4584', '919', 'Park Place']]
1181
1182
1183Text Munging
1184^^^^^^^^^^^^
1185
1186:func:`sub` replaces every occurrence of a pattern with a string or the
1187result of a function. This example demonstrates using :func:`sub` with
1188a function to "munge" text, or randomize the order of all the characters
1189in each word of a sentence except for the first and last characters::
1190
1191 >>> def repl(m):
1192 ... inner_word = list(m.group(2))
1193 ... random.shuffle(inner_word)
1194 ... return m.group(1) + "".join(inner_word) + m.group(3)
1195 >>> text = "Professor Abdolmalek, please report your absences promptly."
1196 >>> re.sub("(\w)(\w+)(\w)", repl, text)
1197 'Poefsrosr Aealmlobdk, pslaee reorpt your abnseces plmrptoy.'
1198 >>> re.sub("(\w)(\w+)(\w)", repl, text)
1199 'Pofsroser Aodlambelk, plasee reoprt yuor asnebces potlmrpy.'
1200
1201
1202Finding all Adverbs
1203^^^^^^^^^^^^^^^^^^^
1204
Georg Brandl907a7202008-02-22 12:31:45 +00001205:func:`findall` matches *all* occurrences of a pattern, not just the first
Georg Brandlb8df1562007-12-05 18:30:48 +00001206one as :func:`search` does. For example, if one was a writer and wanted to
1207find all of the adverbs in some text, he or she might use :func:`findall` in
Georg Brandl6199e322008-03-22 12:04:26 +00001208the following manner:
Georg Brandlb8df1562007-12-05 18:30:48 +00001209
1210 >>> text = "He was carefully disguised but captured quickly by police."
1211 >>> re.findall(r"\w+ly", text)
1212 ['carefully', 'quickly']
1213
1214
1215Finding all Adverbs and their Positions
1216^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1217
1218If one wants more information about all matches of a pattern than the matched
1219text, :func:`finditer` is useful as it provides instances of
1220:class:`MatchObject` instead of strings. Continuing with the previous example,
1221if one was a writer who wanted to find all of the adverbs *and their positions*
Georg Brandl6199e322008-03-22 12:04:26 +00001222in some text, he or she would use :func:`finditer` in the following manner:
Georg Brandlb8df1562007-12-05 18:30:48 +00001223
1224 >>> text = "He was carefully disguised but captured quickly by police."
1225 >>> for m in re.finditer(r"\w+ly", text):
Georg Brandl6199e322008-03-22 12:04:26 +00001226 ... print '%02d-%02d: %s' % (m.start(), m.end(), m.group(0))
Georg Brandlb8df1562007-12-05 18:30:48 +00001227 07-16: carefully
1228 40-47: quickly
1229
1230
1231Raw String Notation
1232^^^^^^^^^^^^^^^^^^^
1233
1234Raw string notation (``r"text"``) keeps regular expressions sane. Without it,
1235every backslash (``'\'``) in a regular expression would have to be prefixed with
1236another one to escape it. For example, the two following lines of code are
Georg Brandl6199e322008-03-22 12:04:26 +00001237functionally identical:
Georg Brandlb8df1562007-12-05 18:30:48 +00001238
1239 >>> re.match(r"\W(.)\1\W", " ff ")
Georg Brandl6199e322008-03-22 12:04:26 +00001240 <_sre.SRE_Match object at ...>
Georg Brandlb8df1562007-12-05 18:30:48 +00001241 >>> re.match("\\W(.)\\1\\W", " ff ")
Georg Brandl6199e322008-03-22 12:04:26 +00001242 <_sre.SRE_Match object at ...>
Georg Brandlb8df1562007-12-05 18:30:48 +00001243
1244When one wants to match a literal backslash, it must be escaped in the regular
1245expression. With raw string notation, this means ``r"\\"``. Without raw string
1246notation, one must use ``"\\\\"``, making the following lines of code
Georg Brandl6199e322008-03-22 12:04:26 +00001247functionally identical:
Georg Brandlb8df1562007-12-05 18:30:48 +00001248
1249 >>> re.match(r"\\", r"\\")
Georg Brandl6199e322008-03-22 12:04:26 +00001250 <_sre.SRE_Match object at ...>
Georg Brandlb8df1562007-12-05 18:30:48 +00001251 >>> re.match("\\\\", r"\\")
Georg Brandl6199e322008-03-22 12:04:26 +00001252 <_sre.SRE_Match object at ...>