blob: bf937f23d0d8e120f408bbf0ec27476c2184266f [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Built-in Module \sectcode{regex}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-regex}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00003
4\bimodindex{regex}
5This module provides regular expression matching operations similar to
Guido van Rossum28f9a681997-12-09 19:45:47 +00006those found in Emacs.
7
8\strong{Obsolescence note:}
9This module is obsolete as of Python version 1.5; it is still being
10maintained because much existing code still uses it. All new code in
11need of regular expressions should use the new \code{re} module, which
12supports the more powerful and regular Perl-style regular expressions.
13Existing code should be converted. The standard library module
14\code{reconvert} helps in converting \code{regex} style regular
15expressions to \code{re} style regular expressions. (The interfaces
16are different too, so the conversion cannot be fully automated.)
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000017
Guido van Rossum6240b0b1996-10-24 22:49:13 +000018By default the patterns are Emacs-style regular expressions
19(with one exception). There is
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000020a way to change the syntax to match that of several well-known
Guido van Rossumfe4254e1995-08-11 00:31:57 +000021\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
22pattern is not supported, since the original implementation references
23the Emacs syntax tables.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000024
25This module is 8-bit clean: both patterns and strings may contain null
26bytes and characters whose high bit is set.
27
Guido van Rossum326c0bc1994-01-03 00:00:31 +000028\strong{Please note:} There is a little-known fact about Python string
29literals which means that you don't usually have to worry about
30doubling backslashes, even though they are used to escape special
31characters in string literals as well as in regular expressions. This
32is because Python doesn't remove backslashes from string literals if
33they are followed by an unrecognized escape character.
34\emph{However}, if you want to include a literal \dfn{backslash} in a
35regular expression represented as a string literal, you have to
Guido van Rossum1f8cee21997-03-14 04:10:13 +000036\emph{quadruple} it or enclose it in a singleton character class.
37E.g.\ to extract \LaTeX\ \samp{\e section\{{\rm
Guido van Rossum326c0bc1994-01-03 00:00:31 +000038\ldots}\}} headers from a document, you can use this pattern:
Guido van Rossum1f8cee21997-03-14 04:10:13 +000039\code{'[\e ] section\{\e (.*\e )\}'}. \emph{Another exception:}
Guido van Rossum1a535601996-06-26 19:43:22 +000040the escape sequece \samp{\e b} is significant in string literals
41(where it means the ASCII bell character) as well as in Emacs regular
42expressions (where it stands for a word boundary), so in order to
43search for a word boundary, you should use the pattern \code{'\e \e b'}.
44Similarly, a backslash followed by a digit 0-7 should be doubled to
45avoid interpretation as an octal escape.
46
47\subsection{Regular Expressions}
48
49A regular expression (or RE) specifies a set of strings that matches
50it; the functions in this module let you check if a particular string
Guido van Rossum6240b0b1996-10-24 22:49:13 +000051matches a given regular expression (or if a given regular expression
52matches a particular string, which comes down to the same thing).
Guido van Rossum1a535601996-06-26 19:43:22 +000053
54Regular expressions can be concatenated to form new regular
55expressions; if \emph{A} and \emph{B} are both regular expressions,
56then \emph{AB} is also an regular expression. If a string \emph{p}
57matches A and another string \emph{q} matches B, the string \emph{pq}
58will match AB. Thus, complex expressions can easily be constructed
59from simpler ones like the primitives described here. For details of
60the theory and implementation of regular expressions, consult almost
61any textbook about compiler construction.
62
63% XXX The reference could be made more specific, say to
64% "Compilers: Principles, Techniques and Tools", by Alfred V. Aho,
65% Ravi Sethi, and Jeffrey D. Ullman, or some FA text.
66
Guido van Rossum6240b0b1996-10-24 22:49:13 +000067A brief explanation of the format of regular expressions follows.
Guido van Rossum1a535601996-06-26 19:43:22 +000068
69Regular expressions can contain both special and ordinary characters.
70Ordinary characters, like '\code{A}', '\code{a}', or '\code{0}', are
71the simplest regular expressions; they simply match themselves. You
72can concatenate ordinary characters, so '\code{last}' matches the
Guido van Rossum6240b0b1996-10-24 22:49:13 +000073characters 'last'. (In the rest of this section, we'll write RE's in
74\code{this special font}, usually without quotes, and strings to be
75matched 'in single quotes'.)
Guido van Rossum1a535601996-06-26 19:43:22 +000076
77Special characters either stand for classes of ordinary characters, or
78affect how the regular expressions around them are interpreted.
79
80The special characters are:
81\begin{itemize}
Fred Drake4b3f0311996-12-13 22:04:31 +000082\item[\code{.}] (Dot.) Matches any character except a newline.
83\item[\code{\^}] (Caret.) Matches the start of the string.
84\item[\code{\$}] Matches the end of the string.
Guido van Rossum1a535601996-06-26 19:43:22 +000085\code{foo} matches both 'foo' and 'foobar', while the regular
Fred Drake4b3f0311996-12-13 22:04:31 +000086expression '\code{foo\$}' matches only 'foo'.
Guido van Rossum1a535601996-06-26 19:43:22 +000087\item[\code{*}] Causes the resulting RE to
88match 0 or more repetitions of the preceding RE. \code{ab*} will
89match 'a', 'ab', or 'a' followed by any number of 'b's.
90\item[\code{+}] Causes the
91resulting RE to match 1 or more repetitions of the preceding RE.
92\code{ab+} will match 'a' followed by any non-zero number of 'b's; it
93will not match just 'a'.
94\item[\code{?}] Causes the resulting RE to
95match 0 or 1 repetitions of the preceding RE. \code{ab?} will
96match either 'a' or 'ab'.
97
98\item[\code{\e}] Either escapes special characters (permitting you to match
99characters like '*?+\&\$'), or signals a special sequence; special
100sequences are discussed below. Remember that Python also uses the
101backslash as an escape sequence in string literals; if the escape
102sequence isn't recognized by Python's parser, the backslash and
103subsequent character are included in the resulting string. However,
104if Python would recognize the resulting sequence, the backslash should
105be repeated twice.
106
107\item[\code{[]}] Used to indicate a set of characters. Characters can
108be listed individually, or a range is indicated by giving two
109characters and separating them by a '-'. Special characters are
110not active inside sets. For example, \code{[akm\$]}
111will match any of the characters 'a', 'k', 'm', or '\$'; \code{[a-z]} will
112match any lowercase letter.
113
114If you want to include a \code{]} inside a
115set, it must be the first character of the set; to include a \code{-},
116place it as the first or last character.
117
118Characters \emph{not} within a range can be matched by including a
119\code{\^} as the first character of the set; \code{\^} elsewhere will
120simply match the '\code{\^}' character.
121\end{itemize}
122
123The special sequences consist of '\code{\e}' and a character
124from the list below. If the ordinary character is not on the list,
125then the resulting RE will match the second character. For example,
126\code{\e\$} matches the character '\$'. Ones where the backslash
127should be doubled are indicated.
128
129\begin{itemize}
130\item[\code{\e|}]\code{A\e|B}, where A and B can be arbitrary REs,
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000131creates a regular expression that will match either A or B. This can
132be used inside groups (see below) as well.
Guido van Rossum1a535601996-06-26 19:43:22 +0000133%
Fred Drake4b3f0311996-12-13 22:04:31 +0000134\item[\code{\e( \e)}] Indicates the start and end of a group; the
Guido van Rossum1a535601996-06-26 19:43:22 +0000135contents of a group can be matched later in the string with the
Fred Drake4b3f0311996-12-13 22:04:31 +0000136\code{\e [1-9]} special sequence, described next.
Guido van Rossum1a535601996-06-26 19:43:22 +0000137%
138{\fulllineitems\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}]
Fred Drake4b3f0311996-12-13 22:04:31 +0000139Matches the contents of the group of the same
Guido van Rossum1a535601996-06-26 19:43:22 +0000140number. For example, \code{\e (.+\e ) \e \e 1} matches 'the the' or
141'55 55', but not 'the end' (note the space after the group). This
142special sequence can only be used to match one of the first 9 groups;
143groups with higher numbers can be matched using the \code{\e v}
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000144sequence. (\code{\e 8} and \code{\e 9} don't need a double backslash
Fred Drake4b3f0311996-12-13 22:04:31 +0000145because they are not octal digits.)}
Guido van Rossum1a535601996-06-26 19:43:22 +0000146%
Fred Drake4b3f0311996-12-13 22:04:31 +0000147\item[\code{\e \e b}] Matches the empty string, but only at the
Guido van Rossum1a535601996-06-26 19:43:22 +0000148beginning or end of a word. A word is defined as a sequence of
149alphanumeric characters, so the end of a word is indicated by
Fred Drake4b3f0311996-12-13 22:04:31 +0000150whitespace or a non-alphanumeric character.
Guido van Rossum1a535601996-06-26 19:43:22 +0000151%
Fred Drake4b3f0311996-12-13 22:04:31 +0000152\item[\code{\e B}] Matches the empty string, but when it is \emph{not} at the
153beginning or end of a word.
Guido van Rossum1a535601996-06-26 19:43:22 +0000154%
Fred Drake4b3f0311996-12-13 22:04:31 +0000155\item[\code{\e v}] Must be followed by a two digit decimal number, and
156matches the contents of the group of the same number. The group number must be between 1 and 99, inclusive.
Guido van Rossum1a535601996-06-26 19:43:22 +0000157%
158\item[\code{\e w}]Matches any alphanumeric character; this is
159equivalent to the set \code{[a-zA-Z0-9]}.
160%
Fred Drake4b3f0311996-12-13 22:04:31 +0000161\item[\code{\e W}] Matches any non-alphanumeric character; this is
162equivalent to the set \code{[\^a-zA-Z0-9]}.
163\item[\code{\e <}] Matches the empty string, but only at the beginning of a
Guido van Rossum1a535601996-06-26 19:43:22 +0000164word. A word is defined as a sequence of alphanumeric characters, so
165the end of a word is indicated by whitespace or a non-alphanumeric
Fred Drake4b3f0311996-12-13 22:04:31 +0000166character.
167\item[\code{\e >}] Matches the empty string, but only at the end of a
168word.
Guido van Rossum1a535601996-06-26 19:43:22 +0000169
Fred Drake4b3f0311996-12-13 22:04:31 +0000170\item[\code{\e \e \e \e}] Matches a literal backslash.
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000171
Guido van Rossum1a535601996-06-26 19:43:22 +0000172% In Emacs, the following two are start of buffer/end of buffer. In
173% Python they seem to be synonyms for ^$.
Fred Drake4b3f0311996-12-13 22:04:31 +0000174\item[\code{\e `}] Like \code{\^}, this only matches at the start of the
175string.
Guido van Rossum1a535601996-06-26 19:43:22 +0000176\item[\code{\e \e '}] Like \code{\$}, this only matches at the end of the
177string.
178% end of buffer
179\end{itemize}
180
181\subsection{Module Contents}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000182
183The module defines these functions, and an exception:
184
185\renewcommand{\indexsubitem}{(in module regex)}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000186
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000187\begin{funcdesc}{match}{pattern\, string}
188 Return how many characters at the beginning of \var{string} match
189 the regular expression \var{pattern}. Return \code{-1} if the
190 string does not match the pattern (this is different from a
191 zero-length match!).
192\end{funcdesc}
193
194\begin{funcdesc}{search}{pattern\, string}
195 Return the first position in \var{string} that matches the regular
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000196 expression \var{pattern}. Return \code{-1} if no position in the string
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000197 matches the pattern (this is different from a zero-length match
198 anywhere!).
199\end{funcdesc}
200
Guido van Rossum16d6e711994-08-08 12:30:22 +0000201\begin{funcdesc}{compile}{pattern\optional{\, translate}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000202 Compile a regular expression pattern into a regular expression
203 object, which can be used for matching using its \code{match} and
Guido van Rossum470be141995-03-17 16:07:09 +0000204 \code{search} methods, described below. The optional argument
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000205 \var{translate}, if present, must be a 256-character string
206 indicating how characters (both of the pattern and of the strings to
207 be matched) are translated before comparing them; the \code{i}-th
208 element of the string gives the translation for the character with
Guido van Rossum470be141995-03-17 16:07:09 +0000209 \ASCII{} code \code{i}. This can be used to implement
210 case-insensitive matching; see the \code{casefold} data item below.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000211
212 The sequence
213
214\bcode\begin{verbatim}
215prog = regex.compile(pat)
216result = prog.match(str)
217\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +0000218%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000219is equivalent to
220
221\bcode\begin{verbatim}
222result = regex.match(pat, str)
223\end{verbatim}\ecode
Guido van Rossume47da0a1997-07-17 16:34:52 +0000224%
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000225but the version using \code{compile()} is more efficient when multiple
226regular expressions are used concurrently in a single program. (The
227compiled version of the last pattern passed to \code{regex.match()} or
228\code{regex.search()} is cached, so programs that use only a single
229regular expression at a time needn't worry about compiling regular
230expressions.)
231\end{funcdesc}
232
233\begin{funcdesc}{set_syntax}{flags}
234 Set the syntax to be used by future calls to \code{compile},
235 \code{match} and \code{search}. (Already compiled expression objects
236 are not affected.) The argument is an integer which is the OR of
237 several flag bits. The return value is the previous value of
238 the syntax flags. Names for the flags are defined in the standard
239 module \code{regex_syntax}; read the file \file{regex_syntax.py} for
240 more information.
241\end{funcdesc}
242
Barry Warsawcd77df61997-02-18 18:54:30 +0000243\begin{funcdesc}{get_syntax}{}
244 Returns the current value of the syntax flags as an integer.
245\end{funcdesc}
246
Guido van Rossum16d6e711994-08-08 12:30:22 +0000247\begin{funcdesc}{symcomp}{pattern\optional{\, translate}}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000248This is like \code{compile}, but supports symbolic group names: if a
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000249parenthesis-enclosed group begins with a group name in angular
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000250brackets, e.g. \code{'\e(<id>[a-z][a-z0-9]*\e)'}, the group can
251be referenced by its name in arguments to the \code{group} method of
252the resulting compiled regular expression object, like this:
Guido van Rossum7defee71995-02-27 17:52:35 +0000253\code{p.group('id')}. Group names may contain alphanumeric characters
254and \code{'_'} only.
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000255\end{funcdesc}
256
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000257\begin{excdesc}{error}
258 Exception raised when a string passed to one of the functions here
259 is not a valid regular expression (e.g., unmatched parentheses) or
260 when some other error occurs during compilation or matching. (It is
261 never an error if a string contains no match for a pattern.)
262\end{excdesc}
263
264\begin{datadesc}{casefold}
265A string suitable to pass as \var{translate} argument to
266\code{compile} to map all upper case characters to their lowercase
267equivalents.
268\end{datadesc}
269
270\noindent
271Compiled regular expression objects support these methods:
272
273\renewcommand{\indexsubitem}{(regex method)}
Guido van Rossum16d6e711994-08-08 12:30:22 +0000274\begin{funcdesc}{match}{string\optional{\, pos}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000275 Return how many characters at the beginning of \var{string} match
276 the compiled regular expression. Return \code{-1} if the string
277 does not match the pattern (this is different from a zero-length
278 match!).
279
280 The optional second parameter \var{pos} gives an index in the string
281 where the search is to start; it defaults to \code{0}. This is not
282 completely equivalent to slicing the string; the \code{'\^'} pattern
283 character matches at the real begin of the string and at positions
284 just after a newline, not necessarily at the index where the search
285 is to start.
286\end{funcdesc}
287
Guido van Rossum16d6e711994-08-08 12:30:22 +0000288\begin{funcdesc}{search}{string\optional{\, pos}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000289 Return the first position in \var{string} that matches the regular
290 expression \code{pattern}. Return \code{-1} if no position in the
291 string matches the pattern (this is different from a zero-length
292 match anywhere!).
293
294 The optional second parameter has the same meaning as for the
295 \code{match} method.
296\end{funcdesc}
297
298\begin{funcdesc}{group}{index\, index\, ...}
299This method is only valid when the last call to the \code{match}
300or \code{search} method found a match. It returns one or more
301groups of the match. If there is a single \var{index} argument,
302the result is a single string; if there are multiple arguments, the
303result is a tuple with one item per argument. If the \var{index} is
304zero, the corresponding return value is the entire matching string; if
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000305it is in the inclusive range [1..99], it is the string matching the
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000306the corresponding parenthesized group (using the default syntax,
307groups are parenthesized using \code{\\(} and \code{\\)}). If no
308such group exists, the corresponding result is \code{None}.
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000309
310If the regular expression was compiled by \code{symcomp} instead of
311\code{compile}, the \var{index} arguments may also be strings
312identifying groups by their group name.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000313\end{funcdesc}
314
315\noindent
316Compiled regular expressions support these data attributes:
317
318\renewcommand{\indexsubitem}{(regex attribute)}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000319
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000320\begin{datadesc}{regs}
321When the last call to the \code{match} or \code{search} method found a
322match, this is a tuple of pairs of indices corresponding to the
323beginning and end of all parenthesized groups in the pattern. Indices
324are relative to the string argument passed to \code{match} or
325\code{search}. The 0-th tuple gives the beginning and end or the
326whole pattern. When the last match or search failed, this is
327\code{None}.
328\end{datadesc}
329
330\begin{datadesc}{last}
331When the last call to the \code{match} or \code{search} method found a
332match, this is the string argument passed to that method. When the
333last match or search failed, this is \code{None}.
334\end{datadesc}
335
336\begin{datadesc}{translate}
337This is the value of the \var{translate} argument to
338\code{regex.compile} that created this regular expression object. If
339the \var{translate} argument was omitted in the \code{regex.compile}
340call, this is \code{None}.
341\end{datadesc}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000342
343\begin{datadesc}{givenpat}
344The regular expression pattern as passed to \code{compile} or
345\code{symcomp}.
346\end{datadesc}
347
348\begin{datadesc}{realpat}
349The regular expression after stripping the group names for regular
350expressions compiled with \code{symcomp}. Same as \code{givenpat}
351otherwise.
352\end{datadesc}
353
354\begin{datadesc}{groupindex}
355A dictionary giving the mapping from symbolic group names to numerical
356group indices for regular expressions compiled with \code{symcomp}.
357\code{None} otherwise.
358\end{datadesc}