blob: 8f39eeb526407ad57ed48736b9dc5c285ce1a67a [file] [log] [blame]
Christian Heimes2202f872008-02-06 14:31:34 +00001.. _regex-howto:
2
Georg Brandl116aa622007-08-15 14:28:22 +00003****************************
Georg Brandl6911e3c2007-09-04 07:15:32 +00004 Regular Expression HOWTO
Georg Brandl116aa622007-08-15 14:28:22 +00005****************************
6
Benjamin Petersonf07d0022009-03-21 17:31:58 +00007:Author: A.M. Kuchling <amk@amk.ca>
Georg Brandl116aa622007-08-15 14:28:22 +00008
Christian Heimes5b5e81c2007-12-31 16:14:33 +00009.. TODO:
10 Document lookbehind assertions
11 Better way of displaying a RE, a string, and what it matches
12 Mention optional argument to match.groups()
13 Unicode (at least a reference)
Georg Brandl116aa622007-08-15 14:28:22 +000014
15
16.. topic:: Abstract
17
18 This document is an introductory tutorial to using regular expressions in Python
19 with the :mod:`re` module. It provides a gentler introduction than the
20 corresponding section in the Library Reference.
21
22
23Introduction
24============
25
Georg Brandl116aa622007-08-15 14:28:22 +000026Regular expressions (called REs, or regexes, or regex patterns) are essentially
27a tiny, highly specialized programming language embedded inside Python and made
28available through the :mod:`re` module. Using this little language, you specify
29the rules for the set of possible strings that you want to match; this set might
30contain English sentences, or e-mail addresses, or TeX commands, or anything you
31like. You can then ask questions such as "Does this string match the pattern?",
32or "Is there a match for the pattern anywhere in this string?". You can also
33use REs to modify a string or to split it apart in various ways.
34
35Regular expression patterns are compiled into a series of bytecodes which are
36then executed by a matching engine written in C. For advanced use, it may be
37necessary to pay careful attention to how the engine will execute a given RE,
38and write the RE in a certain way in order to produce bytecode that runs faster.
39Optimization isn't covered in this document, because it requires that you have a
40good understanding of the matching engine's internals.
41
42The regular expression language is relatively small and restricted, so not all
43possible string processing tasks can be done using regular expressions. There
44are also tasks that *can* be done with regular expressions, but the expressions
45turn out to be very complicated. In these cases, you may be better off writing
46Python code to do the processing; while Python code will be slower than an
47elaborate regular expression, it will also probably be more understandable.
48
49
50Simple Patterns
51===============
52
53We'll start by learning about the simplest possible regular expressions. Since
54regular expressions are used to operate on strings, we'll begin with the most
55common task: matching characters.
56
57For a detailed explanation of the computer science underlying regular
58expressions (deterministic and non-deterministic finite automata), you can refer
59to almost any textbook on writing compilers.
60
61
62Matching Characters
63-------------------
64
65Most letters and characters will simply match themselves. For example, the
66regular expression ``test`` will match the string ``test`` exactly. (You can
67enable a case-insensitive mode that would let this RE match ``Test`` or ``TEST``
68as well; more about this later.)
69
70There are exceptions to this rule; some characters are special
71:dfn:`metacharacters`, and don't match themselves. Instead, they signal that
72some out-of-the-ordinary thing should be matched, or they affect other portions
73of the RE by repeating them or changing their meaning. Much of this document is
74devoted to discussing various metacharacters and what they do.
75
76Here's a complete list of the metacharacters; their meanings will be discussed
77in the rest of this HOWTO. ::
78
79 . ^ $ * + ? { [ ] \ | ( )
80
81The first metacharacters we'll look at are ``[`` and ``]``. They're used for
82specifying a character class, which is a set of characters that you wish to
83match. Characters can be listed individually, or a range of characters can be
84indicated by giving two characters and separating them by a ``'-'``. For
85example, ``[abc]`` will match any of the characters ``a``, ``b``, or ``c``; this
86is the same as ``[a-c]``, which uses a range to express the same set of
87characters. If you wanted to match only lowercase letters, your RE would be
88``[a-z]``.
89
Georg Brandl116aa622007-08-15 14:28:22 +000090Metacharacters are not active inside classes. For example, ``[akm$]`` will
91match any of the characters ``'a'``, ``'k'``, ``'m'``, or ``'$'``; ``'$'`` is
92usually a metacharacter, but inside a character class it's stripped of its
93special nature.
94
95You can match the characters not listed within the class by :dfn:`complementing`
96the set. This is indicated by including a ``'^'`` as the first character of the
97class; ``'^'`` outside a character class will simply match the ``'^'``
98character. For example, ``[^5]`` will match any character except ``'5'``.
99
100Perhaps the most important metacharacter is the backslash, ``\``. As in Python
101string literals, the backslash can be followed by various characters to signal
102various special sequences. It's also used to escape all the metacharacters so
103you can still match them in patterns; for example, if you need to match a ``[``
104or ``\``, you can precede them with a backslash to remove their special
105meaning: ``\[`` or ``\\``.
106
107Some of the special sequences beginning with ``'\'`` represent predefined sets
108of characters that are often useful, such as the set of digits, the set of
109letters, or the set of anything that isn't whitespace. The following predefined
Terry Reedy23f4fb92011-01-10 23:16:24 +0000110special sequences are a subset of those available. The equivalent classes are
111for bytes patterns. For a complete list of sequences and expanded class
112definitions for Unicode string patterns, see the last part of
113:ref:`Regular Expression Syntax <re-syntax>`.
Georg Brandl116aa622007-08-15 14:28:22 +0000114
115``\d``
116 Matches any decimal digit; this is equivalent to the class ``[0-9]``.
117
118``\D``
119 Matches any non-digit character; this is equivalent to the class ``[^0-9]``.
120
121``\s``
122 Matches any whitespace character; this is equivalent to the class ``[
123 \t\n\r\f\v]``.
124
125``\S``
126 Matches any non-whitespace character; this is equivalent to the class ``[^
127 \t\n\r\f\v]``.
128
129``\w``
130 Matches any alphanumeric character; this is equivalent to the class
131 ``[a-zA-Z0-9_]``.
132
133``\W``
134 Matches any non-alphanumeric character; this is equivalent to the class
135 ``[^a-zA-Z0-9_]``.
136
137These sequences can be included inside a character class. For example,
138``[\s,.]`` is a character class that will match any whitespace character, or
139``','`` or ``'.'``.
140
141The final metacharacter in this section is ``.``. It matches anything except a
142newline character, and there's an alternate mode (``re.DOTALL``) where it will
143match even a newline. ``'.'`` is often used where you want to match "any
144character".
145
146
147Repeating Things
148----------------
149
150Being able to match varying sets of characters is the first thing regular
151expressions can do that isn't already possible with the methods available on
152strings. However, if that was the only additional capability of regexes, they
153wouldn't be much of an advance. Another capability is that you can specify that
154portions of the RE must be repeated a certain number of times.
155
156The first metacharacter for repeating things that we'll look at is ``*``. ``*``
157doesn't match the literal character ``*``; instead, it specifies that the
158previous character can be matched zero or more times, instead of exactly once.
159
160For example, ``ca*t`` will match ``ct`` (0 ``a`` characters), ``cat`` (1 ``a``),
161``caaat`` (3 ``a`` characters), and so forth. The RE engine has various
162internal limitations stemming from the size of C's ``int`` type that will
163prevent it from matching over 2 billion ``a`` characters; you probably don't
164have enough memory to construct a string that large, so you shouldn't run into
165that limit.
166
167Repetitions such as ``*`` are :dfn:`greedy`; when repeating a RE, the matching
168engine will try to repeat it as many times as possible. If later portions of the
169pattern don't match, the matching engine will then back up and try again with
170few repetitions.
171
172A step-by-step example will make this more obvious. Let's consider the
173expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more letters
174from the class ``[bcd]``, and finally ends with a ``'b'``. Now imagine matching
175this RE against the string ``abcbd``.
176
177+------+-----------+---------------------------------+
178| Step | Matched | Explanation |
179+======+===========+=================================+
180| 1 | ``a`` | The ``a`` in the RE matches. |
181+------+-----------+---------------------------------+
182| 2 | ``abcbd`` | The engine matches ``[bcd]*``, |
183| | | going as far as it can, which |
184| | | is to the end of the string. |
185+------+-----------+---------------------------------+
186| 3 | *Failure* | The engine tries to match |
187| | | ``b``, but the current position |
188| | | is at the end of the string, so |
189| | | it fails. |
190+------+-----------+---------------------------------+
191| 4 | ``abcb`` | Back up, so that ``[bcd]*`` |
192| | | matches one less character. |
193+------+-----------+---------------------------------+
194| 5 | *Failure* | Try ``b`` again, but the |
195| | | current position is at the last |
196| | | character, which is a ``'d'``. |
197+------+-----------+---------------------------------+
198| 6 | ``abc`` | Back up again, so that |
199| | | ``[bcd]*`` is only matching |
200| | | ``bc``. |
201+------+-----------+---------------------------------+
202| 6 | ``abcb`` | Try ``b`` again. This time |
Christian Heimesa612dc02008-02-24 13:08:18 +0000203| | | the character at the |
Georg Brandl116aa622007-08-15 14:28:22 +0000204| | | current position is ``'b'``, so |
205| | | it succeeds. |
206+------+-----------+---------------------------------+
207
208The end of the RE has now been reached, and it has matched ``abcb``. This
209demonstrates how the matching engine goes as far as it can at first, and if no
210match is found it will then progressively back up and retry the rest of the RE
211again and again. It will back up until it has tried zero matches for
212``[bcd]*``, and if that subsequently fails, the engine will conclude that the
213string doesn't match the RE at all.
214
215Another repeating metacharacter is ``+``, which matches one or more times. Pay
216careful attention to the difference between ``*`` and ``+``; ``*`` matches
217*zero* or more times, so whatever's being repeated may not be present at all,
218while ``+`` requires at least *one* occurrence. To use a similar example,
219``ca+t`` will match ``cat`` (1 ``a``), ``caaat`` (3 ``a``'s), but won't match
220``ct``.
221
222There are two more repeating qualifiers. The question mark character, ``?``,
223matches either once or zero times; you can think of it as marking something as
224being optional. For example, ``home-?brew`` matches either ``homebrew`` or
225``home-brew``.
226
227The most complicated repeated qualifier is ``{m,n}``, where *m* and *n* are
228decimal integers. This qualifier means there must be at least *m* repetitions,
229and at most *n*. For example, ``a/{1,3}b`` will match ``a/b``, ``a//b``, and
230``a///b``. It won't match ``ab``, which has no slashes, or ``a////b``, which
231has four.
232
233You can omit either *m* or *n*; in that case, a reasonable value is assumed for
234the missing value. Omitting *m* is interpreted as a lower limit of 0, while
235omitting *n* results in an upper bound of infinity --- actually, the upper bound
236is the 2-billion limit mentioned earlier, but that might as well be infinity.
237
238Readers of a reductionist bent may notice that the three other qualifiers can
239all be expressed using this notation. ``{0,}`` is the same as ``*``, ``{1,}``
240is equivalent to ``+``, and ``{0,1}`` is the same as ``?``. It's better to use
241``*``, ``+``, or ``?`` when you can, simply because they're shorter and easier
242to read.
243
244
245Using Regular Expressions
246=========================
247
248Now that we've looked at some simple regular expressions, how do we actually use
249them in Python? The :mod:`re` module provides an interface to the regular
250expression engine, allowing you to compile REs into objects and then perform
251matches with them.
252
253
254Compiling Regular Expressions
255-----------------------------
256
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000257Regular expressions are compiled into pattern objects, which have
Georg Brandl116aa622007-08-15 14:28:22 +0000258methods for various operations such as searching for pattern matches or
259performing string substitutions. ::
260
261 >>> import re
262 >>> p = re.compile('ab*')
Georg Brandl6911e3c2007-09-04 07:15:32 +0000263 >>> p
Terry Reedy8663e342011-01-10 21:49:11 +0000264 <_sre.SRE_Pattern object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000265
266:func:`re.compile` also accepts an optional *flags* argument, used to enable
267various special features and syntax variations. We'll go over the available
268settings later, but for now a single example will do::
269
270 >>> p = re.compile('ab*', re.IGNORECASE)
271
272The RE is passed to :func:`re.compile` as a string. REs are handled as strings
273because regular expressions aren't part of the core Python language, and no
274special syntax was created for expressing them. (There are applications that
275don't need REs at all, so there's no need to bloat the language specification by
276including them.) Instead, the :mod:`re` module is simply a C extension module
277included with Python, just like the :mod:`socket` or :mod:`zlib` modules.
278
279Putting REs in strings keeps the Python language simpler, but has one
280disadvantage which is the topic of the next section.
281
282
283The Backslash Plague
284--------------------
285
286As stated earlier, regular expressions use the backslash character (``'\'``) to
287indicate special forms or to allow special characters to be used without
288invoking their special meaning. This conflicts with Python's usage of the same
289character for the same purpose in string literals.
290
291Let's say you want to write a RE that matches the string ``\section``, which
292might be found in a LaTeX file. To figure out what to write in the program
293code, start with the desired string to be matched. Next, you must escape any
294backslashes and other metacharacters by preceding them with a backslash,
295resulting in the string ``\\section``. The resulting string that must be passed
296to :func:`re.compile` must be ``\\section``. However, to express this as a
297Python string literal, both backslashes must be escaped *again*.
298
299+-------------------+------------------------------------------+
300| Characters | Stage |
301+===================+==========================================+
302| ``\section`` | Text string to be matched |
303+-------------------+------------------------------------------+
304| ``\\section`` | Escaped backslash for :func:`re.compile` |
305+-------------------+------------------------------------------+
306| ``"\\\\section"`` | Escaped backslashes for a string literal |
307+-------------------+------------------------------------------+
308
309In short, to match a literal backslash, one has to write ``'\\\\'`` as the RE
310string, because the regular expression must be ``\\``, and each backslash must
311be expressed as ``\\`` inside a regular Python string literal. In REs that
312feature backslashes repeatedly, this leads to lots of repeated backslashes and
313makes the resulting strings difficult to understand.
314
315The solution is to use Python's raw string notation for regular expressions;
316backslashes are not handled in any special way in a string literal prefixed with
317``'r'``, so ``r"\n"`` is a two-character string containing ``'\'`` and ``'n'``,
318while ``"\n"`` is a one-character string containing a newline. Regular
319expressions will often be written in Python code using this raw string notation.
320
321+-------------------+------------------+
322| Regular String | Raw string |
323+===================+==================+
324| ``"ab*"`` | ``r"ab*"`` |
325+-------------------+------------------+
326| ``"\\\\section"`` | ``r"\\section"`` |
327+-------------------+------------------+
328| ``"\\w+\\s+\\1"`` | ``r"\w+\s+\1"`` |
329+-------------------+------------------+
330
331
332Performing Matches
333------------------
334
335Once you have an object representing a compiled regular expression, what do you
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000336do with it? Pattern objects have several methods and attributes.
Georg Brandl86def6c2008-01-21 20:36:10 +0000337Only the most significant ones will be covered here; consult the :mod:`re` docs
338for a complete listing.
Georg Brandl116aa622007-08-15 14:28:22 +0000339
340+------------------+-----------------------------------------------+
341| Method/Attribute | Purpose |
342+==================+===============================================+
343| ``match()`` | Determine if the RE matches at the beginning |
344| | of the string. |
345+------------------+-----------------------------------------------+
346| ``search()`` | Scan through a string, looking for any |
347| | location where this RE matches. |
348+------------------+-----------------------------------------------+
349| ``findall()`` | Find all substrings where the RE matches, and |
350| | returns them as a list. |
351+------------------+-----------------------------------------------+
352| ``finditer()`` | Find all substrings where the RE matches, and |
Georg Brandl9afde1c2007-11-01 20:32:30 +0000353| | returns them as an :term:`iterator`. |
Georg Brandl116aa622007-08-15 14:28:22 +0000354+------------------+-----------------------------------------------+
355
356:meth:`match` and :meth:`search` return ``None`` if no match can be found. If
357they're successful, a ``MatchObject`` instance is returned, containing
358information about the match: where it starts and ends, the substring it matched,
359and more.
360
361You can learn about this by interactively experimenting with the :mod:`re`
Terry Reedy8663e342011-01-10 21:49:11 +0000362module. If you have :mod:`tkinter` available, you may also want to look at
363:file:`Tools/demo/redemo.py`, a demonstration program included with the
Georg Brandl116aa622007-08-15 14:28:22 +0000364Python distribution. It allows you to enter REs and strings, and displays
365whether the RE matches or fails. :file:`redemo.py` can be quite useful when
366trying to debug a complicated RE. Phil Schwartz's `Kodos
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000367<http://kodos.sourceforge.net/>`_ is also an interactive tool for developing and
368testing RE patterns.
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370This HOWTO uses the standard Python interpreter for its examples. First, run the
371Python interpreter, import the :mod:`re` module, and compile a RE::
372
Georg Brandl116aa622007-08-15 14:28:22 +0000373 >>> import re
374 >>> p = re.compile('[a-z]+')
375 >>> p
Terry Reedy8663e342011-01-10 21:49:11 +0000376 <_sre.SRE_Pattern object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000377
378Now, you can try matching various strings against the RE ``[a-z]+``. An empty
379string shouldn't match at all, since ``+`` means 'one or more repetitions'.
380:meth:`match` should return ``None`` in this case, which will cause the
381interpreter to print no output. You can explicitly print the result of
382:meth:`match` to make this clear. ::
383
384 >>> p.match("")
Georg Brandl6911e3c2007-09-04 07:15:32 +0000385 >>> print(p.match(""))
Georg Brandl116aa622007-08-15 14:28:22 +0000386 None
387
388Now, let's try it on a string that it should match, such as ``tempo``. In this
389case, :meth:`match` will return a :class:`MatchObject`, so you should store the
390result in a variable for later use. ::
391
392 >>> m = p.match('tempo')
Georg Brandl6911e3c2007-09-04 07:15:32 +0000393 >>> m
Terry Reedy8663e342011-01-10 21:49:11 +0000394 <_sre.SRE_Match object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000395
396Now you can query the :class:`MatchObject` for information about the matching
397string. :class:`MatchObject` instances also have several methods and
398attributes; the most important ones are:
399
400+------------------+--------------------------------------------+
401| Method/Attribute | Purpose |
402+==================+============================================+
403| ``group()`` | Return the string matched by the RE |
404+------------------+--------------------------------------------+
405| ``start()`` | Return the starting position of the match |
406+------------------+--------------------------------------------+
407| ``end()`` | Return the ending position of the match |
408+------------------+--------------------------------------------+
409| ``span()`` | Return a tuple containing the (start, end) |
410| | positions of the match |
411+------------------+--------------------------------------------+
412
413Trying these methods will soon clarify their meaning::
414
415 >>> m.group()
416 'tempo'
417 >>> m.start(), m.end()
418 (0, 5)
419 >>> m.span()
420 (0, 5)
421
422:meth:`group` returns the substring that was matched by the RE. :meth:`start`
423and :meth:`end` return the starting and ending index of the match. :meth:`span`
424returns both start and end indexes in a single tuple. Since the :meth:`match`
425method only checks if the RE matches at the start of a string, :meth:`start`
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000426will always be zero. However, the :meth:`search` method of patterns
427scans through the string, so the match may not start at zero in that
Georg Brandl116aa622007-08-15 14:28:22 +0000428case. ::
429
Georg Brandl6911e3c2007-09-04 07:15:32 +0000430 >>> print(p.match('::: message'))
Georg Brandl116aa622007-08-15 14:28:22 +0000431 None
Georg Brandl6911e3c2007-09-04 07:15:32 +0000432 >>> m = p.search('::: message') ; print(m)
Terry Reedy8663e342011-01-10 21:49:11 +0000433 <_sre.SRE_Match object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000434 >>> m.group()
435 'message'
436 >>> m.span()
437 (4, 11)
438
439In actual programs, the most common style is to store the :class:`MatchObject`
440in a variable, and then check if it was ``None``. This usually looks like::
441
442 p = re.compile( ... )
443 m = p.match( 'string goes here' )
444 if m:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000445 print('Match found: ', m.group())
Georg Brandl116aa622007-08-15 14:28:22 +0000446 else:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000447 print('No match')
Georg Brandl116aa622007-08-15 14:28:22 +0000448
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000449Two pattern methods return all of the matches for a pattern.
Georg Brandl116aa622007-08-15 14:28:22 +0000450:meth:`findall` returns a list of matching strings::
451
452 >>> p = re.compile('\d+')
453 >>> p.findall('12 drummers drumming, 11 pipers piping, 10 lords a-leaping')
454 ['12', '11', '10']
455
456:meth:`findall` has to create the entire list before it can be returned as the
457result. The :meth:`finditer` method returns a sequence of :class:`MatchObject`
Terry Reedy8663e342011-01-10 21:49:11 +0000458instances as an :term:`iterator`::
Georg Brandl116aa622007-08-15 14:28:22 +0000459
460 >>> iterator = p.finditer('12 drummers drumming, 11 ... 10 ...')
461 >>> iterator
Terry Reedy8663e342011-01-10 21:49:11 +0000462 <callable_iterator object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000463 >>> for match in iterator:
Georg Brandl6911e3c2007-09-04 07:15:32 +0000464 ... print(match.span())
Georg Brandl116aa622007-08-15 14:28:22 +0000465 ...
466 (0, 2)
467 (22, 24)
468 (29, 31)
469
470
471Module-Level Functions
472----------------------
473
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000474You don't have to create a pattern object and call its methods; the
Georg Brandl116aa622007-08-15 14:28:22 +0000475:mod:`re` module also provides top-level functions called :func:`match`,
476:func:`search`, :func:`findall`, :func:`sub`, and so forth. These functions
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000477take the same arguments as the corresponding pattern method, with
Georg Brandl116aa622007-08-15 14:28:22 +0000478the RE string added as the first argument, and still return either ``None`` or a
479:class:`MatchObject` instance. ::
480
Georg Brandl6911e3c2007-09-04 07:15:32 +0000481 >>> print(re.match(r'From\s+', 'Fromage amk'))
Georg Brandl116aa622007-08-15 14:28:22 +0000482 None
483 >>> re.match(r'From\s+', 'From amk Thu May 14 19:12:10 1998')
Terry Reedy8663e342011-01-10 21:49:11 +0000484 <_sre.SRE_Match object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000485
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000486Under the hood, these functions simply create a pattern object for you
Georg Brandl116aa622007-08-15 14:28:22 +0000487and call the appropriate method on it. They also store the compiled object in a
488cache, so future calls using the same RE are faster.
489
490Should you use these module-level functions, or should you get the
Benjamin Peterson8cc7d882009-06-01 23:14:51 +0000491pattern and call its methods yourself? That choice depends on how
Georg Brandl116aa622007-08-15 14:28:22 +0000492frequently the RE will be used, and on your personal coding style. If the RE is
493being used at only one point in the code, then the module functions are probably
494more convenient. If a program contains a lot of regular expressions, or re-uses
495the same ones in several locations, then it might be worthwhile to collect all
496the definitions in one place, in a section of code that compiles all the REs
497ahead of time. To take an example from the standard library, here's an extract
Georg Brandlf6945182008-02-01 11:56:49 +0000498from the now deprecated :file:`xmllib.py`::
Georg Brandl116aa622007-08-15 14:28:22 +0000499
500 ref = re.compile( ... )
501 entityref = re.compile( ... )
502 charref = re.compile( ... )
503 starttagopen = re.compile( ... )
504
505I generally prefer to work with the compiled object, even for one-time uses, but
506few people will be as much of a purist about this as I am.
507
508
509Compilation Flags
510-----------------
511
512Compilation flags let you modify some aspects of how regular expressions work.
513Flags are available in the :mod:`re` module under two names, a long name such as
514:const:`IGNORECASE` and a short, one-letter form such as :const:`I`. (If you're
515familiar with Perl's pattern modifiers, the one-letter forms use the same
516letters; the short form of :const:`re.VERBOSE` is :const:`re.X`, for example.)
517Multiple flags can be specified by bitwise OR-ing them; ``re.I | re.M`` sets
518both the :const:`I` and :const:`M` flags, for example.
519
520Here's a table of the available flags, followed by a more detailed explanation
521of each one.
522
523+---------------------------------+--------------------------------------------+
524| Flag | Meaning |
525+=================================+============================================+
526| :const:`DOTALL`, :const:`S` | Make ``.`` match any character, including |
527| | newlines |
528+---------------------------------+--------------------------------------------+
529| :const:`IGNORECASE`, :const:`I` | Do case-insensitive matches |
530+---------------------------------+--------------------------------------------+
531| :const:`LOCALE`, :const:`L` | Do a locale-aware match |
532+---------------------------------+--------------------------------------------+
533| :const:`MULTILINE`, :const:`M` | Multi-line matching, affecting ``^`` and |
534| | ``$`` |
535+---------------------------------+--------------------------------------------+
536| :const:`VERBOSE`, :const:`X` | Enable verbose REs, which can be organized |
537| | more cleanly and understandably. |
538+---------------------------------+--------------------------------------------+
Georg Brandlce9fbd32009-03-31 18:41:03 +0000539| :const:`ASCII`, :const:`A` | Makes several escapes like ``\w``, ``\b``, |
540| | ``\s`` and ``\d`` match only on ASCII |
541| | characters with the respective property. |
542+---------------------------------+--------------------------------------------+
Georg Brandl116aa622007-08-15 14:28:22 +0000543
544
545.. data:: I
546 IGNORECASE
547 :noindex:
548
549 Perform case-insensitive matching; character class and literal strings will
550 match letters by ignoring case. For example, ``[A-Z]`` will match lowercase
551 letters, too, and ``Spam`` will match ``Spam``, ``spam``, or ``spAM``. This
552 lowercasing doesn't take the current locale into account; it will if you also
553 set the :const:`LOCALE` flag.
554
555
556.. data:: L
557 LOCALE
558 :noindex:
559
560 Make ``\w``, ``\W``, ``\b``, and ``\B``, dependent on the current locale.
561
562 Locales are a feature of the C library intended to help in writing programs that
563 take account of language differences. For example, if you're processing French
564 text, you'd want to be able to write ``\w+`` to match words, but ``\w`` only
565 matches the character class ``[A-Za-z]``; it won't match ``'é'`` or ``'ç'``. If
566 your system is configured properly and a French locale is selected, certain C
567 functions will tell the program that ``'é'`` should also be considered a letter.
568 Setting the :const:`LOCALE` flag when compiling a regular expression will cause
569 the resulting compiled object to use these C functions for ``\w``; this is
570 slower, but also enables ``\w+`` to match French words as you'd expect.
571
572
573.. data:: M
574 MULTILINE
575 :noindex:
576
577 (``^`` and ``$`` haven't been explained yet; they'll be introduced in section
578 :ref:`more-metacharacters`.)
579
580 Usually ``^`` matches only at the beginning of the string, and ``$`` matches
581 only at the end of the string and immediately before the newline (if any) at the
582 end of the string. When this flag is specified, ``^`` matches at the beginning
583 of the string and at the beginning of each line within the string, immediately
584 following each newline. Similarly, the ``$`` metacharacter matches either at
585 the end of the string and at the end of each line (immediately preceding each
586 newline).
587
588
589.. data:: S
590 DOTALL
591 :noindex:
592
593 Makes the ``'.'`` special character match any character at all, including a
594 newline; without this flag, ``'.'`` will match anything *except* a newline.
595
596
Georg Brandlce9fbd32009-03-31 18:41:03 +0000597.. data:: A
598 ASCII
599 :noindex:
600
601 Make ``\w``, ``\W``, ``\b``, ``\B``, ``\s`` and ``\S`` perform ASCII-only
602 matching instead of full Unicode matching. This is only meaningful for
603 Unicode patterns, and is ignored for byte patterns.
604
605
Georg Brandl116aa622007-08-15 14:28:22 +0000606.. data:: X
607 VERBOSE
608 :noindex:
609
610 This flag allows you to write regular expressions that are more readable by
611 granting you more flexibility in how you can format them. When this flag has
612 been specified, whitespace within the RE string is ignored, except when the
613 whitespace is in a character class or preceded by an unescaped backslash; this
614 lets you organize and indent the RE more clearly. This flag also lets you put
615 comments within a RE that will be ignored by the engine; comments are marked by
616 a ``'#'`` that's neither in a character class or preceded by an unescaped
617 backslash.
618
619 For example, here's a RE that uses :const:`re.VERBOSE`; see how much easier it
620 is to read? ::
621
622 charref = re.compile(r"""
Georg Brandl06788c92009-01-03 21:31:47 +0000623 &[#] # Start of a numeric entity reference
Georg Brandl116aa622007-08-15 14:28:22 +0000624 (
625 0[0-7]+ # Octal form
626 | [0-9]+ # Decimal form
627 | x[0-9a-fA-F]+ # Hexadecimal form
628 )
629 ; # Trailing semicolon
630 """, re.VERBOSE)
631
632 Without the verbose setting, the RE would look like this::
633
634 charref = re.compile("&#(0[0-7]+"
635 "|[0-9]+"
636 "|x[0-9a-fA-F]+);")
637
638 In the above example, Python's automatic concatenation of string literals has
639 been used to break up the RE into smaller pieces, but it's still more difficult
640 to understand than the version using :const:`re.VERBOSE`.
641
642
643More Pattern Power
644==================
645
646So far we've only covered a part of the features of regular expressions. In
647this section, we'll cover some new metacharacters, and how to use groups to
648retrieve portions of the text that was matched.
649
650
651.. _more-metacharacters:
652
653More Metacharacters
654-------------------
655
656There are some metacharacters that we haven't covered yet. Most of them will be
657covered in this section.
658
659Some of the remaining metacharacters to be discussed are :dfn:`zero-width
660assertions`. They don't cause the engine to advance through the string;
661instead, they consume no characters at all, and simply succeed or fail. For
662example, ``\b`` is an assertion that the current position is located at a word
663boundary; the position isn't changed by the ``\b`` at all. This means that
664zero-width assertions should never be repeated, because if they match once at a
665given location, they can obviously be matched an infinite number of times.
666
667``|``
668 Alternation, or the "or" operator. If A and B are regular expressions,
669 ``A|B`` will match any string that matches either ``A`` or ``B``. ``|`` has very
670 low precedence in order to make it work reasonably when you're alternating
671 multi-character strings. ``Crow|Servo`` will match either ``Crow`` or ``Servo``,
672 not ``Cro``, a ``'w'`` or an ``'S'``, and ``ervo``.
673
674 To match a literal ``'|'``, use ``\|``, or enclose it inside a character class,
675 as in ``[|]``.
676
677``^``
678 Matches at the beginning of lines. Unless the :const:`MULTILINE` flag has been
679 set, this will only match at the beginning of the string. In :const:`MULTILINE`
680 mode, this also matches immediately after each newline within the string.
681
682 For example, if you wish to match the word ``From`` only at the beginning of a
683 line, the RE to use is ``^From``. ::
684
Georg Brandl6911e3c2007-09-04 07:15:32 +0000685 >>> print(re.search('^From', 'From Here to Eternity'))
Terry Reedy8663e342011-01-10 21:49:11 +0000686 <_sre.SRE_Match object at 0x...>
Georg Brandl6911e3c2007-09-04 07:15:32 +0000687 >>> print(re.search('^From', 'Reciting From Memory'))
Georg Brandl116aa622007-08-15 14:28:22 +0000688 None
689
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000690 .. To match a literal \character{\^}, use \regexp{\e\^} or enclose it
691 .. inside a character class, as in \regexp{[{\e}\^]}.
Georg Brandl116aa622007-08-15 14:28:22 +0000692
693``$``
694 Matches at the end of a line, which is defined as either the end of the string,
695 or any location followed by a newline character. ::
696
Georg Brandl6911e3c2007-09-04 07:15:32 +0000697 >>> print(re.search('}$', '{block}'))
Terry Reedy8663e342011-01-10 21:49:11 +0000698 <_sre.SRE_Match object at 0x...>
Georg Brandl6911e3c2007-09-04 07:15:32 +0000699 >>> print(re.search('}$', '{block} '))
Georg Brandl116aa622007-08-15 14:28:22 +0000700 None
Georg Brandl6911e3c2007-09-04 07:15:32 +0000701 >>> print(re.search('}$', '{block}\n'))
Terry Reedy8663e342011-01-10 21:49:11 +0000702 <_sre.SRE_Match object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000703
704 To match a literal ``'$'``, use ``\$`` or enclose it inside a character class,
705 as in ``[$]``.
706
Georg Brandl116aa622007-08-15 14:28:22 +0000707``\A``
708 Matches only at the start of the string. When not in :const:`MULTILINE` mode,
709 ``\A`` and ``^`` are effectively the same. In :const:`MULTILINE` mode, they're
710 different: ``\A`` still matches only at the beginning of the string, but ``^``
711 may match at any location inside the string that follows a newline character.
712
713``\Z``
714 Matches only at the end of the string.
715
716``\b``
717 Word boundary. This is a zero-width assertion that matches only at the
718 beginning or end of a word. A word is defined as a sequence of alphanumeric
719 characters, so the end of a word is indicated by whitespace or a
720 non-alphanumeric character.
721
722 The following example matches ``class`` only when it's a complete word; it won't
723 match when it's contained inside another word. ::
724
725 >>> p = re.compile(r'\bclass\b')
Georg Brandl6911e3c2007-09-04 07:15:32 +0000726 >>> print(p.search('no class at all'))
Terry Reedy8663e342011-01-10 21:49:11 +0000727 <_sre.SRE_Match object at 0x...>
Georg Brandl6911e3c2007-09-04 07:15:32 +0000728 >>> print(p.search('the declassified algorithm'))
Georg Brandl116aa622007-08-15 14:28:22 +0000729 None
Georg Brandl6911e3c2007-09-04 07:15:32 +0000730 >>> print(p.search('one subclass is'))
Georg Brandl116aa622007-08-15 14:28:22 +0000731 None
732
733 There are two subtleties you should remember when using this special sequence.
734 First, this is the worst collision between Python's string literals and regular
735 expression sequences. In Python's string literals, ``\b`` is the backspace
736 character, ASCII value 8. If you're not using raw strings, then Python will
737 convert the ``\b`` to a backspace, and your RE won't match as you expect it to.
738 The following example looks the same as our previous RE, but omits the ``'r'``
739 in front of the RE string. ::
740
741 >>> p = re.compile('\bclass\b')
Georg Brandl6911e3c2007-09-04 07:15:32 +0000742 >>> print(p.search('no class at all'))
Georg Brandl116aa622007-08-15 14:28:22 +0000743 None
Georg Brandl6911e3c2007-09-04 07:15:32 +0000744 >>> print(p.search('\b' + 'class' + '\b') )
Terry Reedy8663e342011-01-10 21:49:11 +0000745 <_sre.SRE_Match object at 0x...>
Georg Brandl116aa622007-08-15 14:28:22 +0000746
747 Second, inside a character class, where there's no use for this assertion,
748 ``\b`` represents the backspace character, for compatibility with Python's
749 string literals.
750
751``\B``
752 Another zero-width assertion, this is the opposite of ``\b``, only matching when
753 the current position is not at a word boundary.
754
755
756Grouping
757--------
758
759Frequently you need to obtain more information than just whether the RE matched
760or not. Regular expressions are often used to dissect strings by writing a RE
761divided into several subgroups which match different components of interest.
762For example, an RFC-822 header line is divided into a header name and a value,
763separated by a ``':'``, like this::
764
765 From: author@example.com
766 User-Agent: Thunderbird 1.5.0.9 (X11/20061227)
767 MIME-Version: 1.0
768 To: editor@example.com
769
770This can be handled by writing a regular expression which matches an entire
771header line, and has one group which matches the header name, and another group
772which matches the header's value.
773
774Groups are marked by the ``'('``, ``')'`` metacharacters. ``'('`` and ``')'``
775have much the same meaning as they do in mathematical expressions; they group
776together the expressions contained inside them, and you can repeat the contents
777of a group with a repeating qualifier, such as ``*``, ``+``, ``?``, or
778``{m,n}``. For example, ``(ab)*`` will match zero or more repetitions of
779``ab``. ::
780
781 >>> p = re.compile('(ab)*')
Georg Brandl6911e3c2007-09-04 07:15:32 +0000782 >>> print(p.match('ababababab').span())
Georg Brandl116aa622007-08-15 14:28:22 +0000783 (0, 10)
784
785Groups indicated with ``'('``, ``')'`` also capture the starting and ending
786index of the text that they match; this can be retrieved by passing an argument
787to :meth:`group`, :meth:`start`, :meth:`end`, and :meth:`span`. Groups are
788numbered starting with 0. Group 0 is always present; it's the whole RE, so
789:class:`MatchObject` methods all have group 0 as their default argument. Later
790we'll see how to express groups that don't capture the span of text that they
791match. ::
792
793 >>> p = re.compile('(a)b')
794 >>> m = p.match('ab')
795 >>> m.group()
796 'ab'
797 >>> m.group(0)
798 'ab'
799
800Subgroups are numbered from left to right, from 1 upward. Groups can be nested;
801to determine the number, just count the opening parenthesis characters, going
802from left to right. ::
803
804 >>> p = re.compile('(a(b)c)d')
805 >>> m = p.match('abcd')
806 >>> m.group(0)
807 'abcd'
808 >>> m.group(1)
809 'abc'
810 >>> m.group(2)
811 'b'
812
813:meth:`group` can be passed multiple group numbers at a time, in which case it
814will return a tuple containing the corresponding values for those groups. ::
815
816 >>> m.group(2,1,2)
817 ('b', 'abc', 'b')
818
819The :meth:`groups` method returns a tuple containing the strings for all the
820subgroups, from 1 up to however many there are. ::
821
822 >>> m.groups()
823 ('abc', 'b')
824
825Backreferences in a pattern allow you to specify that the contents of an earlier
826capturing group must also be found at the current location in the string. For
827example, ``\1`` will succeed if the exact contents of group 1 can be found at
828the current position, and fails otherwise. Remember that Python's string
829literals also use a backslash followed by numbers to allow including arbitrary
830characters in a string, so be sure to use a raw string when incorporating
831backreferences in a RE.
832
833For example, the following RE detects doubled words in a string. ::
834
835 >>> p = re.compile(r'(\b\w+)\s+\1')
836 >>> p.search('Paris in the the spring').group()
837 'the the'
838
839Backreferences like this aren't often useful for just searching through a string
840--- there are few text formats which repeat data in this way --- but you'll soon
841find out that they're *very* useful when performing string substitutions.
842
843
844Non-capturing and Named Groups
845------------------------------
846
847Elaborate REs may use many groups, both to capture substrings of interest, and
848to group and structure the RE itself. In complex REs, it becomes difficult to
849keep track of the group numbers. There are two features which help with this
850problem. Both of them use a common syntax for regular expression extensions, so
851we'll look at that first.
852
853Perl 5 added several additional features to standard regular expressions, and
854the Python :mod:`re` module supports most of them. It would have been
855difficult to choose new single-keystroke metacharacters or new special sequences
856beginning with ``\`` to represent the new features without making Perl's regular
857expressions confusingly different from standard REs. If you chose ``&`` as a
858new metacharacter, for example, old expressions would be assuming that ``&`` was
859a regular character and wouldn't have escaped it by writing ``\&`` or ``[&]``.
860
861The solution chosen by the Perl developers was to use ``(?...)`` as the
862extension syntax. ``?`` immediately after a parenthesis was a syntax error
863because the ``?`` would have nothing to repeat, so this didn't introduce any
864compatibility problems. The characters immediately after the ``?`` indicate
865what extension is being used, so ``(?=foo)`` is one thing (a positive lookahead
866assertion) and ``(?:foo)`` is something else (a non-capturing group containing
867the subexpression ``foo``).
868
869Python adds an extension syntax to Perl's extension syntax. If the first
870character after the question mark is a ``P``, you know that it's an extension
871that's specific to Python. Currently there are two such extensions:
872``(?P<name>...)`` defines a named group, and ``(?P=name)`` is a backreference to
873a named group. If future versions of Perl 5 add similar features using a
874different syntax, the :mod:`re` module will be changed to support the new
875syntax, while preserving the Python-specific syntax for compatibility's sake.
876
877Now that we've looked at the general extension syntax, we can return to the
878features that simplify working with groups in complex REs. Since groups are
879numbered from left to right and a complex expression may use many groups, it can
880become difficult to keep track of the correct numbering. Modifying such a
881complex RE is annoying, too: insert a new group near the beginning and you
882change the numbers of everything that follows it.
883
884Sometimes you'll want to use a group to collect a part of a regular expression,
885but aren't interested in retrieving the group's contents. You can make this fact
886explicit by using a non-capturing group: ``(?:...)``, where you can replace the
887``...`` with any other regular expression. ::
888
889 >>> m = re.match("([abc])+", "abc")
890 >>> m.groups()
891 ('c',)
892 >>> m = re.match("(?:[abc])+", "abc")
893 >>> m.groups()
894 ()
895
896Except for the fact that you can't retrieve the contents of what the group
897matched, a non-capturing group behaves exactly the same as a capturing group;
898you can put anything inside it, repeat it with a repetition metacharacter such
899as ``*``, and nest it within other groups (capturing or non-capturing).
900``(?:...)`` is particularly useful when modifying an existing pattern, since you
901can add new groups without changing how all the other groups are numbered. It
902should be mentioned that there's no performance difference in searching between
903capturing and non-capturing groups; neither form is any faster than the other.
904
905A more significant feature is named groups: instead of referring to them by
906numbers, groups can be referenced by a name.
907
908The syntax for a named group is one of the Python-specific extensions:
909``(?P<name>...)``. *name* is, obviously, the name of the group. Named groups
910also behave exactly like capturing groups, and additionally associate a name
911with a group. The :class:`MatchObject` methods that deal with capturing groups
912all accept either integers that refer to the group by number or strings that
913contain the desired group's name. Named groups are still given numbers, so you
914can retrieve information about a group in two ways::
915
916 >>> p = re.compile(r'(?P<word>\b\w+\b)')
917 >>> m = p.search( '(((( Lots of punctuation )))' )
918 >>> m.group('word')
919 'Lots'
920 >>> m.group(1)
921 'Lots'
922
923Named groups are handy because they let you use easily-remembered names, instead
924of having to remember numbers. Here's an example RE from the :mod:`imaplib`
925module::
926
927 InternalDate = re.compile(r'INTERNALDATE "'
928 r'(?P<day>[ 123][0-9])-(?P<mon>[A-Z][a-z][a-z])-'
Georg Brandla1c6a1c2009-01-03 21:26:05 +0000929 r'(?P<year>[0-9][0-9][0-9][0-9])'
Georg Brandl116aa622007-08-15 14:28:22 +0000930 r' (?P<hour>[0-9][0-9]):(?P<min>[0-9][0-9]):(?P<sec>[0-9][0-9])'
931 r' (?P<zonen>[-+])(?P<zoneh>[0-9][0-9])(?P<zonem>[0-9][0-9])'
932 r'"')
933
934It's obviously much easier to retrieve ``m.group('zonem')``, instead of having
935to remember to retrieve group 9.
936
937The syntax for backreferences in an expression such as ``(...)\1`` refers to the
938number of the group. There's naturally a variant that uses the group name
939instead of the number. This is another Python extension: ``(?P=name)`` indicates
940that the contents of the group called *name* should again be matched at the
941current point. The regular expression for finding doubled words,
942``(\b\w+)\s+\1`` can also be written as ``(?P<word>\b\w+)\s+(?P=word)``::
943
944 >>> p = re.compile(r'(?P<word>\b\w+)\s+(?P=word)')
945 >>> p.search('Paris in the the spring').group()
946 'the the'
947
948
949Lookahead Assertions
950--------------------
951
952Another zero-width assertion is the lookahead assertion. Lookahead assertions
953are available in both positive and negative form, and look like this:
954
955``(?=...)``
956 Positive lookahead assertion. This succeeds if the contained regular
957 expression, represented here by ``...``, successfully matches at the current
958 location, and fails otherwise. But, once the contained expression has been
959 tried, the matching engine doesn't advance at all; the rest of the pattern is
960 tried right where the assertion started.
961
962``(?!...)``
963 Negative lookahead assertion. This is the opposite of the positive assertion;
964 it succeeds if the contained expression *doesn't* match at the current position
965 in the string.
966
967To make this concrete, let's look at a case where a lookahead is useful.
968Consider a simple pattern to match a filename and split it apart into a base
969name and an extension, separated by a ``.``. For example, in ``news.rc``,
970``news`` is the base name, and ``rc`` is the filename's extension.
971
972The pattern to match this is quite simple:
973
974``.*[.].*$``
975
976Notice that the ``.`` needs to be treated specially because it's a
977metacharacter; I've put it inside a character class. Also notice the trailing
978``$``; this is added to ensure that all the rest of the string must be included
979in the extension. This regular expression matches ``foo.bar`` and
980``autoexec.bat`` and ``sendmail.cf`` and ``printers.conf``.
981
982Now, consider complicating the problem a bit; what if you want to match
983filenames where the extension is not ``bat``? Some incorrect attempts:
984
985``.*[.][^b].*$`` The first attempt above tries to exclude ``bat`` by requiring
986that the first character of the extension is not a ``b``. This is wrong,
987because the pattern also doesn't match ``foo.bar``.
988
Georg Brandl116aa622007-08-15 14:28:22 +0000989``.*[.]([^b]..|.[^a].|..[^t])$``
990
Georg Brandl116aa622007-08-15 14:28:22 +0000991The expression gets messier when you try to patch up the first solution by
992requiring one of the following cases to match: the first character of the
993extension isn't ``b``; the second character isn't ``a``; or the third character
994isn't ``t``. This accepts ``foo.bar`` and rejects ``autoexec.bat``, but it
995requires a three-letter extension and won't accept a filename with a two-letter
996extension such as ``sendmail.cf``. We'll complicate the pattern again in an
997effort to fix it.
998
999``.*[.]([^b].?.?|.[^a]?.?|..?[^t]?)$``
1000
1001In the third attempt, the second and third letters are all made optional in
1002order to allow matching extensions shorter than three characters, such as
1003``sendmail.cf``.
1004
1005The pattern's getting really complicated now, which makes it hard to read and
1006understand. Worse, if the problem changes and you want to exclude both ``bat``
1007and ``exe`` as extensions, the pattern would get even more complicated and
1008confusing.
1009
1010A negative lookahead cuts through all this confusion:
1011
1012``.*[.](?!bat$).*$`` The negative lookahead means: if the expression ``bat``
1013doesn't match at this point, try the rest of the pattern; if ``bat$`` does
1014match, the whole pattern will fail. The trailing ``$`` is required to ensure
1015that something like ``sample.batch``, where the extension only starts with
1016``bat``, will be allowed.
1017
Georg Brandl116aa622007-08-15 14:28:22 +00001018Excluding another filename extension is now easy; simply add it as an
1019alternative inside the assertion. The following pattern excludes filenames that
1020end in either ``bat`` or ``exe``:
1021
1022``.*[.](?!bat$|exe$).*$``
1023
Georg Brandl116aa622007-08-15 14:28:22 +00001024
1025Modifying Strings
1026=================
1027
1028Up to this point, we've simply performed searches against a static string.
1029Regular expressions are also commonly used to modify strings in various ways,
Benjamin Peterson8cc7d882009-06-01 23:14:51 +00001030using the following pattern methods:
Georg Brandl116aa622007-08-15 14:28:22 +00001031
1032+------------------+-----------------------------------------------+
1033| Method/Attribute | Purpose |
1034+==================+===============================================+
1035| ``split()`` | Split the string into a list, splitting it |
1036| | wherever the RE matches |
1037+------------------+-----------------------------------------------+
1038| ``sub()`` | Find all substrings where the RE matches, and |
1039| | replace them with a different string |
1040+------------------+-----------------------------------------------+
1041| ``subn()`` | Does the same thing as :meth:`sub`, but |
1042| | returns the new string and the number of |
1043| | replacements |
1044+------------------+-----------------------------------------------+
1045
1046
1047Splitting Strings
1048-----------------
1049
Benjamin Peterson8cc7d882009-06-01 23:14:51 +00001050The :meth:`split` method of a pattern splits a string apart
Georg Brandl116aa622007-08-15 14:28:22 +00001051wherever the RE matches, returning a list of the pieces. It's similar to the
1052:meth:`split` method of strings but provides much more generality in the
1053delimiters that you can split by; :meth:`split` only supports splitting by
1054whitespace or by a fixed string. As you'd expect, there's a module-level
1055:func:`re.split` function, too.
1056
1057
1058.. method:: .split(string [, maxsplit=0])
1059 :noindex:
1060
1061 Split *string* by the matches of the regular expression. If capturing
1062 parentheses are used in the RE, then their contents will also be returned as
1063 part of the resulting list. If *maxsplit* is nonzero, at most *maxsplit* splits
1064 are performed.
1065
1066You can limit the number of splits made, by passing a value for *maxsplit*.
1067When *maxsplit* is nonzero, at most *maxsplit* splits will be made, and the
1068remainder of the string is returned as the final element of the list. In the
1069following example, the delimiter is any sequence of non-alphanumeric characters.
1070::
1071
1072 >>> p = re.compile(r'\W+')
1073 >>> p.split('This is a test, short and sweet, of split().')
1074 ['This', 'is', 'a', 'test', 'short', 'and', 'sweet', 'of', 'split', '']
1075 >>> p.split('This is a test, short and sweet, of split().', 3)
1076 ['This', 'is', 'a', 'test, short and sweet, of split().']
1077
1078Sometimes you're not only interested in what the text between delimiters is, but
1079also need to know what the delimiter was. If capturing parentheses are used in
1080the RE, then their values are also returned as part of the list. Compare the
1081following calls::
1082
1083 >>> p = re.compile(r'\W+')
1084 >>> p2 = re.compile(r'(\W+)')
1085 >>> p.split('This... is a test.')
1086 ['This', 'is', 'a', 'test', '']
1087 >>> p2.split('This... is a test.')
1088 ['This', '... ', 'is', ' ', 'a', ' ', 'test', '.', '']
1089
1090The module-level function :func:`re.split` adds the RE to be used as the first
1091argument, but is otherwise the same. ::
1092
1093 >>> re.split('[\W]+', 'Words, words, words.')
1094 ['Words', 'words', 'words', '']
1095 >>> re.split('([\W]+)', 'Words, words, words.')
1096 ['Words', ', ', 'words', ', ', 'words', '.', '']
1097 >>> re.split('[\W]+', 'Words, words, words.', 1)
1098 ['Words', 'words, words.']
1099
1100
1101Search and Replace
1102------------------
1103
1104Another common task is to find all the matches for a pattern, and replace them
1105with a different string. The :meth:`sub` method takes a replacement value,
1106which can be either a string or a function, and the string to be processed.
1107
1108
1109.. method:: .sub(replacement, string[, count=0])
1110 :noindex:
1111
1112 Returns the string obtained by replacing the leftmost non-overlapping
1113 occurrences of the RE in *string* by the replacement *replacement*. If the
1114 pattern isn't found, *string* is returned unchanged.
1115
1116 The optional argument *count* is the maximum number of pattern occurrences to be
1117 replaced; *count* must be a non-negative integer. The default value of 0 means
1118 to replace all occurrences.
1119
1120Here's a simple example of using the :meth:`sub` method. It replaces colour
1121names with the word ``colour``::
1122
1123 >>> p = re.compile( '(blue|white|red)')
1124 >>> p.sub( 'colour', 'blue socks and red shoes')
1125 'colour socks and colour shoes'
1126 >>> p.sub( 'colour', 'blue socks and red shoes', count=1)
1127 'colour socks and red shoes'
1128
1129The :meth:`subn` method does the same work, but returns a 2-tuple containing the
1130new string value and the number of replacements that were performed::
1131
1132 >>> p = re.compile( '(blue|white|red)')
1133 >>> p.subn( 'colour', 'blue socks and red shoes')
1134 ('colour socks and colour shoes', 2)
1135 >>> p.subn( 'colour', 'no colours at all')
1136 ('no colours at all', 0)
1137
1138Empty matches are replaced only when they're not adjacent to a previous match.
1139::
1140
1141 >>> p = re.compile('x*')
1142 >>> p.sub('-', 'abxd')
1143 '-a-b-d-'
1144
1145If *replacement* is a string, any backslash escapes in it are processed. That
1146is, ``\n`` is converted to a single newline character, ``\r`` is converted to a
1147carriage return, and so forth. Unknown escapes such as ``\j`` are left alone.
1148Backreferences, such as ``\6``, are replaced with the substring matched by the
1149corresponding group in the RE. This lets you incorporate portions of the
1150original text in the resulting replacement string.
1151
1152This example matches the word ``section`` followed by a string enclosed in
1153``{``, ``}``, and changes ``section`` to ``subsection``::
1154
1155 >>> p = re.compile('section{ ( [^}]* ) }', re.VERBOSE)
1156 >>> p.sub(r'subsection{\1}','section{First} section{second}')
1157 'subsection{First} subsection{second}'
1158
1159There's also a syntax for referring to named groups as defined by the
1160``(?P<name>...)`` syntax. ``\g<name>`` will use the substring matched by the
1161group named ``name``, and ``\g<number>`` uses the corresponding group number.
1162``\g<2>`` is therefore equivalent to ``\2``, but isn't ambiguous in a
1163replacement string such as ``\g<2>0``. (``\20`` would be interpreted as a
1164reference to group 20, not a reference to group 2 followed by the literal
1165character ``'0'``.) The following substitutions are all equivalent, but use all
1166three variations of the replacement string. ::
1167
1168 >>> p = re.compile('section{ (?P<name> [^}]* ) }', re.VERBOSE)
1169 >>> p.sub(r'subsection{\1}','section{First}')
1170 'subsection{First}'
1171 >>> p.sub(r'subsection{\g<1>}','section{First}')
1172 'subsection{First}'
1173 >>> p.sub(r'subsection{\g<name>}','section{First}')
1174 'subsection{First}'
1175
1176*replacement* can also be a function, which gives you even more control. If
1177*replacement* is a function, the function is called for every non-overlapping
1178occurrence of *pattern*. On each call, the function is passed a
1179:class:`MatchObject` argument for the match and can use this information to
1180compute the desired replacement string and return it.
1181
1182In the following example, the replacement function translates decimals into
1183hexadecimal::
1184
1185 >>> def hexrepl( match ):
1186 ... "Return the hex string for a decimal number"
1187 ... value = int( match.group() )
1188 ... return hex(value)
1189 ...
1190 >>> p = re.compile(r'\d+')
1191 >>> p.sub(hexrepl, 'Call 65490 for printing, 49152 for user code.')
1192 'Call 0xffd2 for printing, 0xc000 for user code.'
1193
1194When using the module-level :func:`re.sub` function, the pattern is passed as
Benjamin Peterson8cc7d882009-06-01 23:14:51 +00001195the first argument. The pattern may be provided as an object or as a string; if
Georg Brandl116aa622007-08-15 14:28:22 +00001196you need to specify regular expression flags, you must either use a
Benjamin Peterson8cc7d882009-06-01 23:14:51 +00001197pattern object as the first parameter, or use embedded modifiers in the
1198pattern string, e.g. ``sub("(?i)b+", "x", "bbbb BBBB")`` returns ``'x x'``.
Georg Brandl116aa622007-08-15 14:28:22 +00001199
1200
1201Common Problems
1202===============
1203
1204Regular expressions are a powerful tool for some applications, but in some ways
1205their behaviour isn't intuitive and at times they don't behave the way you may
1206expect them to. This section will point out some of the most common pitfalls.
1207
1208
1209Use String Methods
1210------------------
1211
1212Sometimes using the :mod:`re` module is a mistake. If you're matching a fixed
1213string, or a single character class, and you're not using any :mod:`re` features
1214such as the :const:`IGNORECASE` flag, then the full power of regular expressions
1215may not be required. Strings have several methods for performing operations with
1216fixed strings and they're usually much faster, because the implementation is a
1217single small C loop that's been optimized for the purpose, instead of the large,
1218more generalized regular expression engine.
1219
1220One example might be replacing a single fixed string with another one; for
1221example, you might replace ``word`` with ``deed``. ``re.sub()`` seems like the
1222function to use for this, but consider the :meth:`replace` method. Note that
1223:func:`replace` will also replace ``word`` inside words, turning ``swordfish``
1224into ``sdeedfish``, but the naive RE ``word`` would have done that, too. (To
1225avoid performing the substitution on parts of words, the pattern would have to
1226be ``\bword\b``, in order to require that ``word`` have a word boundary on
1227either side. This takes the job beyond :meth:`replace`'s abilities.)
1228
1229Another common task is deleting every occurrence of a single character from a
1230string or replacing it with another single character. You might do this with
1231something like ``re.sub('\n', ' ', S)``, but :meth:`translate` is capable of
1232doing both tasks and will be faster than any regular expression operation can
1233be.
1234
1235In short, before turning to the :mod:`re` module, consider whether your problem
1236can be solved with a faster and simpler string method.
1237
1238
1239match() versus search()
1240-----------------------
1241
1242The :func:`match` function only checks if the RE matches at the beginning of the
1243string while :func:`search` will scan forward through the string for a match.
1244It's important to keep this distinction in mind. Remember, :func:`match` will
1245only report a successful match which will start at 0; if the match wouldn't
1246start at zero, :func:`match` will *not* report it. ::
1247
Georg Brandl6911e3c2007-09-04 07:15:32 +00001248 >>> print(re.match('super', 'superstition').span())
Georg Brandl116aa622007-08-15 14:28:22 +00001249 (0, 5)
Georg Brandl6911e3c2007-09-04 07:15:32 +00001250 >>> print(re.match('super', 'insuperable'))
Georg Brandl116aa622007-08-15 14:28:22 +00001251 None
1252
1253On the other hand, :func:`search` will scan forward through the string,
1254reporting the first match it finds. ::
1255
Georg Brandl6911e3c2007-09-04 07:15:32 +00001256 >>> print(re.search('super', 'superstition').span())
Georg Brandl116aa622007-08-15 14:28:22 +00001257 (0, 5)
Georg Brandl6911e3c2007-09-04 07:15:32 +00001258 >>> print(re.search('super', 'insuperable').span())
Georg Brandl116aa622007-08-15 14:28:22 +00001259 (2, 7)
1260
1261Sometimes you'll be tempted to keep using :func:`re.match`, and just add ``.*``
1262to the front of your RE. Resist this temptation and use :func:`re.search`
1263instead. The regular expression compiler does some analysis of REs in order to
1264speed up the process of looking for a match. One such analysis figures out what
1265the first character of a match must be; for example, a pattern starting with
1266``Crow`` must match starting with a ``'C'``. The analysis lets the engine
1267quickly scan through the string looking for the starting character, only trying
1268the full match if a ``'C'`` is found.
1269
1270Adding ``.*`` defeats this optimization, requiring scanning to the end of the
1271string and then backtracking to find a match for the rest of the RE. Use
1272:func:`re.search` instead.
1273
1274
1275Greedy versus Non-Greedy
1276------------------------
1277
1278When repeating a regular expression, as in ``a*``, the resulting action is to
1279consume as much of the pattern as possible. This fact often bites you when
1280you're trying to match a pair of balanced delimiters, such as the angle brackets
1281surrounding an HTML tag. The naive pattern for matching a single HTML tag
1282doesn't work because of the greedy nature of ``.*``. ::
1283
1284 >>> s = '<html><head><title>Title</title>'
1285 >>> len(s)
1286 32
Georg Brandl6911e3c2007-09-04 07:15:32 +00001287 >>> print(re.match('<.*>', s).span())
Georg Brandl116aa622007-08-15 14:28:22 +00001288 (0, 32)
Georg Brandl6911e3c2007-09-04 07:15:32 +00001289 >>> print(re.match('<.*>', s).group())
Georg Brandl116aa622007-08-15 14:28:22 +00001290 <html><head><title>Title</title>
1291
1292The RE matches the ``'<'`` in ``<html>``, and the ``.*`` consumes the rest of
1293the string. There's still more left in the RE, though, and the ``>`` can't
1294match at the end of the string, so the regular expression engine has to
1295backtrack character by character until it finds a match for the ``>``. The
1296final match extends from the ``'<'`` in ``<html>`` to the ``'>'`` in
1297``</title>``, which isn't what you want.
1298
1299In this case, the solution is to use the non-greedy qualifiers ``*?``, ``+?``,
1300``??``, or ``{m,n}?``, which match as *little* text as possible. In the above
1301example, the ``'>'`` is tried immediately after the first ``'<'`` matches, and
1302when it fails, the engine advances a character at a time, retrying the ``'>'``
1303at every step. This produces just the right result::
1304
Georg Brandl6911e3c2007-09-04 07:15:32 +00001305 >>> print(re.match('<.*?>', s).group())
Georg Brandl116aa622007-08-15 14:28:22 +00001306 <html>
1307
1308(Note that parsing HTML or XML with regular expressions is painful.
1309Quick-and-dirty patterns will handle common cases, but HTML and XML have special
1310cases that will break the obvious regular expression; by the time you've written
1311a regular expression that handles all of the possible cases, the patterns will
1312be *very* complicated. Use an HTML or XML parser module for such tasks.)
1313
1314
Terry Reedy8663e342011-01-10 21:49:11 +00001315Using re.VERBOSE
1316----------------
Georg Brandl116aa622007-08-15 14:28:22 +00001317
1318By now you've probably noticed that regular expressions are a very compact
1319notation, but they're not terribly readable. REs of moderate complexity can
1320become lengthy collections of backslashes, parentheses, and metacharacters,
1321making them difficult to read and understand.
1322
1323For such REs, specifying the ``re.VERBOSE`` flag when compiling the regular
1324expression can be helpful, because it allows you to format the regular
1325expression more clearly.
1326
1327The ``re.VERBOSE`` flag has several effects. Whitespace in the regular
1328expression that *isn't* inside a character class is ignored. This means that an
1329expression such as ``dog | cat`` is equivalent to the less readable ``dog|cat``,
1330but ``[a b]`` will still match the characters ``'a'``, ``'b'``, or a space. In
1331addition, you can also put comments inside a RE; comments extend from a ``#``
1332character to the next newline. When used with triple-quoted strings, this
1333enables REs to be formatted more neatly::
1334
1335 pat = re.compile(r"""
1336 \s* # Skip leading whitespace
1337 (?P<header>[^:]+) # Header name
1338 \s* : # Whitespace, and a colon
1339 (?P<value>.*?) # The header's value -- *? used to
1340 # lose the following trailing whitespace
1341 \s*$ # Trailing whitespace to end-of-line
1342 """, re.VERBOSE)
1343
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001344This is far more readable than::
Georg Brandl116aa622007-08-15 14:28:22 +00001345
1346 pat = re.compile(r"\s*(?P<header>[^:]+)\s*:(?P<value>.*?)\s*$")
1347
Georg Brandl116aa622007-08-15 14:28:22 +00001348
1349Feedback
1350========
1351
1352Regular expressions are a complicated topic. Did this document help you
1353understand them? Were there parts that were unclear, or Problems you
1354encountered that weren't covered here? If so, please send suggestions for
1355improvements to the author.
1356
1357The most complete book on regular expressions is almost certainly Jeffrey
1358Friedl's Mastering Regular Expressions, published by O'Reilly. Unfortunately,
1359it exclusively concentrates on Perl and Java's flavours of regular expressions,
1360and doesn't contain any Python material at all, so it won't be useful as a
1361reference for programming in Python. (The first edition covered Python's
1362now-removed :mod:`regex` module, which won't help you much.) Consider checking
1363it out from your library.
1364