blob: d3f44ba8627376a088108150059e70a30b27a6f8 [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\section{Built-in Module \sectcode{regex}}
2
3\bimodindex{regex}
4This module provides regular expression matching operations similar to
5those found in Emacs. It is always available.
6
Guido van Rossum6240b0b1996-10-24 22:49:13 +00007By default the patterns are Emacs-style regular expressions
8(with one exception). There is
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00009a way to change the syntax to match that of several well-known
Guido van Rossumfe4254e1995-08-11 00:31:57 +000010\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
11pattern is not supported, since the original implementation references
12the Emacs syntax tables.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +000013
14This module is 8-bit clean: both patterns and strings may contain null
15bytes and characters whose high bit is set.
16
Guido van Rossum326c0bc1994-01-03 00:00:31 +000017\strong{Please note:} There is a little-known fact about Python string
18literals which means that you don't usually have to worry about
19doubling backslashes, even though they are used to escape special
20characters in string literals as well as in regular expressions. This
21is because Python doesn't remove backslashes from string literals if
22they are followed by an unrecognized escape character.
23\emph{However}, if you want to include a literal \dfn{backslash} in a
24regular expression represented as a string literal, you have to
Guido van Rossum1f8cee21997-03-14 04:10:13 +000025\emph{quadruple} it or enclose it in a singleton character class.
26E.g.\ to extract \LaTeX\ \samp{\e section\{{\rm
Guido van Rossum326c0bc1994-01-03 00:00:31 +000027\ldots}\}} headers from a document, you can use this pattern:
Guido van Rossum1f8cee21997-03-14 04:10:13 +000028\code{'[\e ] section\{\e (.*\e )\}'}. \emph{Another exception:}
Guido van Rossum1a535601996-06-26 19:43:22 +000029the escape sequece \samp{\e b} is significant in string literals
30(where it means the ASCII bell character) as well as in Emacs regular
31expressions (where it stands for a word boundary), so in order to
32search for a word boundary, you should use the pattern \code{'\e \e b'}.
33Similarly, a backslash followed by a digit 0-7 should be doubled to
34avoid interpretation as an octal escape.
35
36\subsection{Regular Expressions}
37
38A regular expression (or RE) specifies a set of strings that matches
39it; the functions in this module let you check if a particular string
Guido van Rossum6240b0b1996-10-24 22:49:13 +000040matches a given regular expression (or if a given regular expression
41matches a particular string, which comes down to the same thing).
Guido van Rossum1a535601996-06-26 19:43:22 +000042
43Regular expressions can be concatenated to form new regular
44expressions; if \emph{A} and \emph{B} are both regular expressions,
45then \emph{AB} is also an regular expression. If a string \emph{p}
46matches A and another string \emph{q} matches B, the string \emph{pq}
47will match AB. Thus, complex expressions can easily be constructed
48from simpler ones like the primitives described here. For details of
49the theory and implementation of regular expressions, consult almost
50any textbook about compiler construction.
51
52% XXX The reference could be made more specific, say to
53% "Compilers: Principles, Techniques and Tools", by Alfred V. Aho,
54% Ravi Sethi, and Jeffrey D. Ullman, or some FA text.
55
Guido van Rossum6240b0b1996-10-24 22:49:13 +000056A brief explanation of the format of regular expressions follows.
Guido van Rossum1a535601996-06-26 19:43:22 +000057
58Regular expressions can contain both special and ordinary characters.
59Ordinary characters, like '\code{A}', '\code{a}', or '\code{0}', are
60the simplest regular expressions; they simply match themselves. You
61can concatenate ordinary characters, so '\code{last}' matches the
Guido van Rossum6240b0b1996-10-24 22:49:13 +000062characters 'last'. (In the rest of this section, we'll write RE's in
63\code{this special font}, usually without quotes, and strings to be
64matched 'in single quotes'.)
Guido van Rossum1a535601996-06-26 19:43:22 +000065
66Special characters either stand for classes of ordinary characters, or
67affect how the regular expressions around them are interpreted.
68
69The special characters are:
70\begin{itemize}
Fred Drake4b3f0311996-12-13 22:04:31 +000071\item[\code{.}] (Dot.) Matches any character except a newline.
72\item[\code{\^}] (Caret.) Matches the start of the string.
73\item[\code{\$}] Matches the end of the string.
Guido van Rossum1a535601996-06-26 19:43:22 +000074\code{foo} matches both 'foo' and 'foobar', while the regular
Fred Drake4b3f0311996-12-13 22:04:31 +000075expression '\code{foo\$}' matches only 'foo'.
Guido van Rossum1a535601996-06-26 19:43:22 +000076\item[\code{*}] Causes the resulting RE to
77match 0 or more repetitions of the preceding RE. \code{ab*} will
78match 'a', 'ab', or 'a' followed by any number of 'b's.
79\item[\code{+}] Causes the
80resulting RE to match 1 or more repetitions of the preceding RE.
81\code{ab+} will match 'a' followed by any non-zero number of 'b's; it
82will not match just 'a'.
83\item[\code{?}] Causes the resulting RE to
84match 0 or 1 repetitions of the preceding RE. \code{ab?} will
85match either 'a' or 'ab'.
86
87\item[\code{\e}] Either escapes special characters (permitting you to match
88characters like '*?+\&\$'), or signals a special sequence; special
89sequences are discussed below. Remember that Python also uses the
90backslash as an escape sequence in string literals; if the escape
91sequence isn't recognized by Python's parser, the backslash and
92subsequent character are included in the resulting string. However,
93if Python would recognize the resulting sequence, the backslash should
94be repeated twice.
95
96\item[\code{[]}] Used to indicate a set of characters. Characters can
97be listed individually, or a range is indicated by giving two
98characters and separating them by a '-'. Special characters are
99not active inside sets. For example, \code{[akm\$]}
100will match any of the characters 'a', 'k', 'm', or '\$'; \code{[a-z]} will
101match any lowercase letter.
102
103If you want to include a \code{]} inside a
104set, it must be the first character of the set; to include a \code{-},
105place it as the first or last character.
106
107Characters \emph{not} within a range can be matched by including a
108\code{\^} as the first character of the set; \code{\^} elsewhere will
109simply match the '\code{\^}' character.
110\end{itemize}
111
112The special sequences consist of '\code{\e}' and a character
113from the list below. If the ordinary character is not on the list,
114then the resulting RE will match the second character. For example,
115\code{\e\$} matches the character '\$'. Ones where the backslash
116should be doubled are indicated.
117
118\begin{itemize}
119\item[\code{\e|}]\code{A\e|B}, where A and B can be arbitrary REs,
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000120creates a regular expression that will match either A or B. This can
121be used inside groups (see below) as well.
Guido van Rossum1a535601996-06-26 19:43:22 +0000122%
Fred Drake4b3f0311996-12-13 22:04:31 +0000123\item[\code{\e( \e)}] Indicates the start and end of a group; the
Guido van Rossum1a535601996-06-26 19:43:22 +0000124contents of a group can be matched later in the string with the
Fred Drake4b3f0311996-12-13 22:04:31 +0000125\code{\e [1-9]} special sequence, described next.
Guido van Rossum1a535601996-06-26 19:43:22 +0000126%
127{\fulllineitems\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}]
Fred Drake4b3f0311996-12-13 22:04:31 +0000128Matches the contents of the group of the same
Guido van Rossum1a535601996-06-26 19:43:22 +0000129number. For example, \code{\e (.+\e ) \e \e 1} matches 'the the' or
130'55 55', but not 'the end' (note the space after the group). This
131special sequence can only be used to match one of the first 9 groups;
132groups with higher numbers can be matched using the \code{\e v}
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000133sequence. (\code{\e 8} and \code{\e 9} don't need a double backslash
Fred Drake4b3f0311996-12-13 22:04:31 +0000134because they are not octal digits.)}
Guido van Rossum1a535601996-06-26 19:43:22 +0000135%
Fred Drake4b3f0311996-12-13 22:04:31 +0000136\item[\code{\e \e b}] Matches the empty string, but only at the
Guido van Rossum1a535601996-06-26 19:43:22 +0000137beginning or end of a word. A word is defined as a sequence of
138alphanumeric characters, so the end of a word is indicated by
Fred Drake4b3f0311996-12-13 22:04:31 +0000139whitespace or a non-alphanumeric character.
Guido van Rossum1a535601996-06-26 19:43:22 +0000140%
Fred Drake4b3f0311996-12-13 22:04:31 +0000141\item[\code{\e B}] Matches the empty string, but when it is \emph{not} at the
142beginning or end of a word.
Guido van Rossum1a535601996-06-26 19:43:22 +0000143%
Fred Drake4b3f0311996-12-13 22:04:31 +0000144\item[\code{\e v}] Must be followed by a two digit decimal number, and
145matches 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 +0000146%
147\item[\code{\e w}]Matches any alphanumeric character; this is
148equivalent to the set \code{[a-zA-Z0-9]}.
149%
Fred Drake4b3f0311996-12-13 22:04:31 +0000150\item[\code{\e W}] Matches any non-alphanumeric character; this is
151equivalent to the set \code{[\^a-zA-Z0-9]}.
152\item[\code{\e <}] Matches the empty string, but only at the beginning of a
Guido van Rossum1a535601996-06-26 19:43:22 +0000153word. A word is defined as a sequence of alphanumeric characters, so
154the end of a word is indicated by whitespace or a non-alphanumeric
Fred Drake4b3f0311996-12-13 22:04:31 +0000155character.
156\item[\code{\e >}] Matches the empty string, but only at the end of a
157word.
Guido van Rossum1a535601996-06-26 19:43:22 +0000158
Fred Drake4b3f0311996-12-13 22:04:31 +0000159\item[\code{\e \e \e \e}] Matches a literal backslash.
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000160
Guido van Rossum1a535601996-06-26 19:43:22 +0000161% In Emacs, the following two are start of buffer/end of buffer. In
162% Python they seem to be synonyms for ^$.
Fred Drake4b3f0311996-12-13 22:04:31 +0000163\item[\code{\e `}] Like \code{\^}, this only matches at the start of the
164string.
Guido van Rossum1a535601996-06-26 19:43:22 +0000165\item[\code{\e \e '}] Like \code{\$}, this only matches at the end of the
166string.
167% end of buffer
168\end{itemize}
169
170\subsection{Module Contents}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000171
172The module defines these functions, and an exception:
173
174\renewcommand{\indexsubitem}{(in module regex)}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000175
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000176\begin{funcdesc}{match}{pattern\, string}
177 Return how many characters at the beginning of \var{string} match
178 the regular expression \var{pattern}. Return \code{-1} if the
179 string does not match the pattern (this is different from a
180 zero-length match!).
181\end{funcdesc}
182
183\begin{funcdesc}{search}{pattern\, string}
184 Return the first position in \var{string} that matches the regular
Guido van Rossum6240b0b1996-10-24 22:49:13 +0000185 expression \var{pattern}. Return \code{-1} if no position in the string
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000186 matches the pattern (this is different from a zero-length match
187 anywhere!).
188\end{funcdesc}
189
Guido van Rossum16d6e711994-08-08 12:30:22 +0000190\begin{funcdesc}{compile}{pattern\optional{\, translate}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000191 Compile a regular expression pattern into a regular expression
192 object, which can be used for matching using its \code{match} and
Guido van Rossum470be141995-03-17 16:07:09 +0000193 \code{search} methods, described below. The optional argument
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000194 \var{translate}, if present, must be a 256-character string
195 indicating how characters (both of the pattern and of the strings to
196 be matched) are translated before comparing them; the \code{i}-th
197 element of the string gives the translation for the character with
Guido van Rossum470be141995-03-17 16:07:09 +0000198 \ASCII{} code \code{i}. This can be used to implement
199 case-insensitive matching; see the \code{casefold} data item below.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000200
201 The sequence
202
203\bcode\begin{verbatim}
204prog = regex.compile(pat)
205result = prog.match(str)
206\end{verbatim}\ecode
207
208is equivalent to
209
210\bcode\begin{verbatim}
211result = regex.match(pat, str)
212\end{verbatim}\ecode
213
214but the version using \code{compile()} is more efficient when multiple
215regular expressions are used concurrently in a single program. (The
216compiled version of the last pattern passed to \code{regex.match()} or
217\code{regex.search()} is cached, so programs that use only a single
218regular expression at a time needn't worry about compiling regular
219expressions.)
220\end{funcdesc}
221
222\begin{funcdesc}{set_syntax}{flags}
223 Set the syntax to be used by future calls to \code{compile},
224 \code{match} and \code{search}. (Already compiled expression objects
225 are not affected.) The argument is an integer which is the OR of
226 several flag bits. The return value is the previous value of
227 the syntax flags. Names for the flags are defined in the standard
228 module \code{regex_syntax}; read the file \file{regex_syntax.py} for
229 more information.
230\end{funcdesc}
231
Barry Warsawcd77df61997-02-18 18:54:30 +0000232\begin{funcdesc}{get_syntax}{}
233 Returns the current value of the syntax flags as an integer.
234\end{funcdesc}
235
Guido van Rossum16d6e711994-08-08 12:30:22 +0000236\begin{funcdesc}{symcomp}{pattern\optional{\, translate}}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000237This is like \code{compile}, but supports symbolic group names: if a
Guido van Rossum6c4f0031995-03-07 10:14:09 +0000238parenthesis-enclosed group begins with a group name in angular
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000239brackets, e.g. \code{'\e(<id>[a-z][a-z0-9]*\e)'}, the group can
240be referenced by its name in arguments to the \code{group} method of
241the resulting compiled regular expression object, like this:
Guido van Rossum7defee71995-02-27 17:52:35 +0000242\code{p.group('id')}. Group names may contain alphanumeric characters
243and \code{'_'} only.
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000244\end{funcdesc}
245
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000246\begin{excdesc}{error}
247 Exception raised when a string passed to one of the functions here
248 is not a valid regular expression (e.g., unmatched parentheses) or
249 when some other error occurs during compilation or matching. (It is
250 never an error if a string contains no match for a pattern.)
251\end{excdesc}
252
253\begin{datadesc}{casefold}
254A string suitable to pass as \var{translate} argument to
255\code{compile} to map all upper case characters to their lowercase
256equivalents.
257\end{datadesc}
258
259\noindent
260Compiled regular expression objects support these methods:
261
262\renewcommand{\indexsubitem}{(regex method)}
Guido van Rossum16d6e711994-08-08 12:30:22 +0000263\begin{funcdesc}{match}{string\optional{\, pos}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000264 Return how many characters at the beginning of \var{string} match
265 the compiled regular expression. Return \code{-1} if the string
266 does not match the pattern (this is different from a zero-length
267 match!).
268
269 The optional second parameter \var{pos} gives an index in the string
270 where the search is to start; it defaults to \code{0}. This is not
271 completely equivalent to slicing the string; the \code{'\^'} pattern
272 character matches at the real begin of the string and at positions
273 just after a newline, not necessarily at the index where the search
274 is to start.
275\end{funcdesc}
276
Guido van Rossum16d6e711994-08-08 12:30:22 +0000277\begin{funcdesc}{search}{string\optional{\, pos}}
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000278 Return the first position in \var{string} that matches the regular
279 expression \code{pattern}. Return \code{-1} if no position in the
280 string matches the pattern (this is different from a zero-length
281 match anywhere!).
282
283 The optional second parameter has the same meaning as for the
284 \code{match} method.
285\end{funcdesc}
286
287\begin{funcdesc}{group}{index\, index\, ...}
288This method is only valid when the last call to the \code{match}
289or \code{search} method found a match. It returns one or more
290groups of the match. If there is a single \var{index} argument,
291the result is a single string; if there are multiple arguments, the
292result is a tuple with one item per argument. If the \var{index} is
293zero, the corresponding return value is the entire matching string; if
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000294it is in the inclusive range [1..99], it is the string matching the
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000295the corresponding parenthesized group (using the default syntax,
296groups are parenthesized using \code{\\(} and \code{\\)}). If no
297such group exists, the corresponding result is \code{None}.
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000298
299If the regular expression was compiled by \code{symcomp} instead of
300\code{compile}, the \var{index} arguments may also be strings
301identifying groups by their group name.
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000302\end{funcdesc}
303
304\noindent
305Compiled regular expressions support these data attributes:
306
307\renewcommand{\indexsubitem}{(regex attribute)}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000308
Guido van Rossum5fdeeea1994-01-02 01:22:07 +0000309\begin{datadesc}{regs}
310When the last call to the \code{match} or \code{search} method found a
311match, this is a tuple of pairs of indices corresponding to the
312beginning and end of all parenthesized groups in the pattern. Indices
313are relative to the string argument passed to \code{match} or
314\code{search}. The 0-th tuple gives the beginning and end or the
315whole pattern. When the last match or search failed, this is
316\code{None}.
317\end{datadesc}
318
319\begin{datadesc}{last}
320When the last call to the \code{match} or \code{search} method found a
321match, this is the string argument passed to that method. When the
322last match or search failed, this is \code{None}.
323\end{datadesc}
324
325\begin{datadesc}{translate}
326This is the value of the \var{translate} argument to
327\code{regex.compile} that created this regular expression object. If
328the \var{translate} argument was omitted in the \code{regex.compile}
329call, this is \code{None}.
330\end{datadesc}
Guido van Rossum326c0bc1994-01-03 00:00:31 +0000331
332\begin{datadesc}{givenpat}
333The regular expression pattern as passed to \code{compile} or
334\code{symcomp}.
335\end{datadesc}
336
337\begin{datadesc}{realpat}
338The regular expression after stripping the group names for regular
339expressions compiled with \code{symcomp}. Same as \code{givenpat}
340otherwise.
341\end{datadesc}
342
343\begin{datadesc}{groupindex}
344A dictionary giving the mapping from symbolic group names to numerical
345group indices for regular expressions compiled with \code{symcomp}.
346\code{None} otherwise.
347\end{datadesc}