1 |
.TH PCREPATTERN 3 "11 November 2012" "PCRE 8.32"
|
2 |
.SH NAME
|
3 |
PCRE - Perl-compatible regular expressions
|
4 |
.SH "PCRE REGULAR EXPRESSION DETAILS"
|
5 |
.rs
|
6 |
.sp
|
7 |
The syntax and semantics of the regular expressions that are supported by PCRE
|
8 |
are described in detail below. There is a quick-reference syntax summary in the
|
9 |
.\" HREF
|
10 |
\fBpcresyntax\fP
|
11 |
.\"
|
12 |
page. PCRE tries to match Perl syntax and semantics as closely as it can. PCRE
|
13 |
also supports some alternative regular expression syntax (which does not
|
14 |
conflict with the Perl syntax) in order to provide some compatibility with
|
15 |
regular expressions in Python, .NET, and Oniguruma.
|
16 |
.P
|
17 |
Perl's regular expressions are described in its own documentation, and
|
18 |
regular expressions in general are covered in a number of books, some of which
|
19 |
have copious examples. Jeffrey Friedl's "Mastering Regular Expressions",
|
20 |
published by O'Reilly, covers regular expressions in great detail. This
|
21 |
description of PCRE's regular expressions is intended as reference material.
|
22 |
.P
|
23 |
The original operation of PCRE was on strings of one-byte characters. However,
|
24 |
there is now also support for UTF-8 strings in the original library, an
|
25 |
extra library that supports 16-bit and UTF-16 character strings, and a
|
26 |
third library that supports 32-bit and UTF-32 character strings. To use these
|
27 |
features, PCRE must be built to include appropriate support. When using UTF
|
28 |
strings you must either call the compiling function with the PCRE_UTF8,
|
29 |
PCRE_UTF16, or PCRE_UTF32 option, or the pattern must start with one of
|
30 |
these special sequences:
|
31 |
.sp
|
32 |
(*UTF8)
|
33 |
(*UTF16)
|
34 |
(*UTF32)
|
35 |
(*UTF)
|
36 |
.sp
|
37 |
(*UTF) is a generic sequence that can be used with any of the libraries.
|
38 |
Starting a pattern with such a sequence is equivalent to setting the relevant
|
39 |
option. This feature is not Perl-compatible. How setting a UTF mode affects
|
40 |
pattern matching is mentioned in several places below. There is also a summary
|
41 |
of features in the
|
42 |
.\" HREF
|
43 |
\fBpcreunicode\fP
|
44 |
.\"
|
45 |
page.
|
46 |
.P
|
47 |
Another special sequence that may appear at the start of a pattern or in
|
48 |
combination with (*UTF8), (*UTF16), (*UTF32) or (*UTF) is:
|
49 |
.sp
|
50 |
(*UCP)
|
51 |
.sp
|
52 |
This has the same effect as setting the PCRE_UCP option: it causes sequences
|
53 |
such as \ed and \ew to use Unicode properties to determine character types,
|
54 |
instead of recognizing only characters with codes less than 128 via a lookup
|
55 |
table.
|
56 |
.P
|
57 |
If a pattern starts with (*NO_START_OPT), it has the same effect as setting the
|
58 |
PCRE_NO_START_OPTIMIZE option either at compile or matching time. There are
|
59 |
also some more of these special sequences that are concerned with the handling
|
60 |
of newlines; they are described below.
|
61 |
.P
|
62 |
The remainder of this document discusses the patterns that are supported by
|
63 |
PCRE when one its main matching functions, \fBpcre_exec()\fP (8-bit) or
|
64 |
\fBpcre[16|32]_exec()\fP (16- or 32-bit), is used. PCRE also has alternative
|
65 |
matching functions, \fBpcre_dfa_exec()\fP and \fBpcre[16|32_dfa_exec()\fP,
|
66 |
which match using a different algorithm that is not Perl-compatible. Some of
|
67 |
the features discussed below are not available when DFA matching is used. The
|
68 |
advantages and disadvantages of the alternative functions, and how they differ
|
69 |
from the normal functions, are discussed in the
|
70 |
.\" HREF
|
71 |
\fBpcrematching\fP
|
72 |
.\"
|
73 |
page.
|
74 |
.
|
75 |
.
|
76 |
.SH "EBCDIC CHARACTER CODES"
|
77 |
.rs
|
78 |
.sp
|
79 |
PCRE can be compiled to run in an environment that uses EBCDIC as its character
|
80 |
code rather than ASCII or Unicode (typically a mainframe system). In the
|
81 |
sections below, character code values are ASCII or Unicode; in an EBCDIC
|
82 |
environment these characters may have different code values, and there are no
|
83 |
code points greater than 255.
|
84 |
.
|
85 |
.
|
86 |
.\" HTML <a name="newlines"></a>
|
87 |
.SH "NEWLINE CONVENTIONS"
|
88 |
.rs
|
89 |
.sp
|
90 |
PCRE supports five different conventions for indicating line breaks in
|
91 |
strings: a single CR (carriage return) character, a single LF (linefeed)
|
92 |
character, the two-character sequence CRLF, any of the three preceding, or any
|
93 |
Unicode newline sequence. The
|
94 |
.\" HREF
|
95 |
\fBpcreapi\fP
|
96 |
.\"
|
97 |
page has
|
98 |
.\" HTML <a href="pcreapi.html#newlines">
|
99 |
.\" </a>
|
100 |
further discussion
|
101 |
.\"
|
102 |
about newlines, and shows how to set the newline convention in the
|
103 |
\fIoptions\fP arguments for the compiling and matching functions.
|
104 |
.P
|
105 |
It is also possible to specify a newline convention by starting a pattern
|
106 |
string with one of the following five sequences:
|
107 |
.sp
|
108 |
(*CR) carriage return
|
109 |
(*LF) linefeed
|
110 |
(*CRLF) carriage return, followed by linefeed
|
111 |
(*ANYCRLF) any of the three above
|
112 |
(*ANY) all Unicode newline sequences
|
113 |
.sp
|
114 |
These override the default and the options given to the compiling function. For
|
115 |
example, on a Unix system where LF is the default newline sequence, the pattern
|
116 |
.sp
|
117 |
(*CR)a.b
|
118 |
.sp
|
119 |
changes the convention to CR. That pattern matches "a\enb" because LF is no
|
120 |
longer a newline. Note that these special settings, which are not
|
121 |
Perl-compatible, are recognized only at the very start of a pattern, and that
|
122 |
they must be in upper case. If more than one of them is present, the last one
|
123 |
is used.
|
124 |
.P
|
125 |
The newline convention affects where the circumflex and dollar assertions are
|
126 |
true. It also affects the interpretation of the dot metacharacter when
|
127 |
PCRE_DOTALL is not set, and the behaviour of \eN. However, it does not affect
|
128 |
what the \eR escape sequence matches. By default, this is any Unicode newline
|
129 |
sequence, for Perl compatibility. However, this can be changed; see the
|
130 |
description of \eR in the section entitled
|
131 |
.\" HTML <a href="#newlineseq">
|
132 |
.\" </a>
|
133 |
"Newline sequences"
|
134 |
.\"
|
135 |
below. A change of \eR setting can be combined with a change of newline
|
136 |
convention.
|
137 |
.
|
138 |
.
|
139 |
.SH "CHARACTERS AND METACHARACTERS"
|
140 |
.rs
|
141 |
.sp
|
142 |
A regular expression is a pattern that is matched against a subject string from
|
143 |
left to right. Most characters stand for themselves in a pattern, and match the
|
144 |
corresponding characters in the subject. As a trivial example, the pattern
|
145 |
.sp
|
146 |
The quick brown fox
|
147 |
.sp
|
148 |
matches a portion of a subject string that is identical to itself. When
|
149 |
caseless matching is specified (the PCRE_CASELESS option), letters are matched
|
150 |
independently of case. In a UTF mode, PCRE always understands the concept of
|
151 |
case for characters whose values are less than 128, so caseless matching is
|
152 |
always possible. For characters with higher values, the concept of case is
|
153 |
supported if PCRE is compiled with Unicode property support, but not otherwise.
|
154 |
If you want to use caseless matching for characters 128 and above, you must
|
155 |
ensure that PCRE is compiled with Unicode property support as well as with
|
156 |
UTF support.
|
157 |
.P
|
158 |
The power of regular expressions comes from the ability to include alternatives
|
159 |
and repetitions in the pattern. These are encoded in the pattern by the use of
|
160 |
\fImetacharacters\fP, which do not stand for themselves but instead are
|
161 |
interpreted in some special way.
|
162 |
.P
|
163 |
There are two different sets of metacharacters: those that are recognized
|
164 |
anywhere in the pattern except within square brackets, and those that are
|
165 |
recognized within square brackets. Outside square brackets, the metacharacters
|
166 |
are as follows:
|
167 |
.sp
|
168 |
\e general escape character with several uses
|
169 |
^ assert start of string (or line, in multiline mode)
|
170 |
$ assert end of string (or line, in multiline mode)
|
171 |
. match any character except newline (by default)
|
172 |
[ start character class definition
|
173 |
| start of alternative branch
|
174 |
( start subpattern
|
175 |
) end subpattern
|
176 |
? extends the meaning of (
|
177 |
also 0 or 1 quantifier
|
178 |
also quantifier minimizer
|
179 |
* 0 or more quantifier
|
180 |
+ 1 or more quantifier
|
181 |
also "possessive quantifier"
|
182 |
{ start min/max quantifier
|
183 |
.sp
|
184 |
Part of a pattern that is in square brackets is called a "character class". In
|
185 |
a character class the only metacharacters are:
|
186 |
.sp
|
187 |
\e general escape character
|
188 |
^ negate the class, but only if the first character
|
189 |
- indicates character range
|
190 |
.\" JOIN
|
191 |
[ POSIX character class (only if followed by POSIX
|
192 |
syntax)
|
193 |
] terminates the character class
|
194 |
.sp
|
195 |
The following sections describe the use of each of the metacharacters.
|
196 |
.
|
197 |
.
|
198 |
.SH BACKSLASH
|
199 |
.rs
|
200 |
.sp
|
201 |
The backslash character has several uses. Firstly, if it is followed by a
|
202 |
character that is not a number or a letter, it takes away any special meaning
|
203 |
that character may have. This use of backslash as an escape character applies
|
204 |
both inside and outside character classes.
|
205 |
.P
|
206 |
For example, if you want to match a * character, you write \e* in the pattern.
|
207 |
This escaping action applies whether or not the following character would
|
208 |
otherwise be interpreted as a metacharacter, so it is always safe to precede a
|
209 |
non-alphanumeric with backslash to specify that it stands for itself. In
|
210 |
particular, if you want to match a backslash, you write \e\e.
|
211 |
.P
|
212 |
In a UTF mode, only ASCII numbers and letters have any special meaning after a
|
213 |
backslash. All other characters (in particular, those whose codepoints are
|
214 |
greater than 127) are treated as literals.
|
215 |
.P
|
216 |
If a pattern is compiled with the PCRE_EXTENDED option, white space in the
|
217 |
pattern (other than in a character class) and characters between a # outside
|
218 |
a character class and the next newline are ignored. An escaping backslash can
|
219 |
be used to include a white space or # character as part of the pattern.
|
220 |
.P
|
221 |
If you want to remove the special meaning from a sequence of characters, you
|
222 |
can do so by putting them between \eQ and \eE. This is different from Perl in
|
223 |
that $ and @ are handled as literals in \eQ...\eE sequences in PCRE, whereas in
|
224 |
Perl, $ and @ cause variable interpolation. Note the following examples:
|
225 |
.sp
|
226 |
Pattern PCRE matches Perl matches
|
227 |
.sp
|
228 |
.\" JOIN
|
229 |
\eQabc$xyz\eE abc$xyz abc followed by the
|
230 |
contents of $xyz
|
231 |
\eQabc\e$xyz\eE abc\e$xyz abc\e$xyz
|
232 |
\eQabc\eE\e$\eQxyz\eE abc$xyz abc$xyz
|
233 |
.sp
|
234 |
The \eQ...\eE sequence is recognized both inside and outside character classes.
|
235 |
An isolated \eE that is not preceded by \eQ is ignored. If \eQ is not followed
|
236 |
by \eE later in the pattern, the literal interpretation continues to the end of
|
237 |
the pattern (that is, \eE is assumed at the end). If the isolated \eQ is inside
|
238 |
a character class, this causes an error, because the character class is not
|
239 |
terminated.
|
240 |
.
|
241 |
.
|
242 |
.\" HTML <a name="digitsafterbackslash"></a>
|
243 |
.SS "Non-printing characters"
|
244 |
.rs
|
245 |
.sp
|
246 |
A second use of backslash provides a way of encoding non-printing characters
|
247 |
in patterns in a visible manner. There is no restriction on the appearance of
|
248 |
non-printing characters, apart from the binary zero that terminates a pattern,
|
249 |
but when a pattern is being prepared by text editing, it is often easier to use
|
250 |
one of the following escape sequences than the binary character it represents:
|
251 |
.sp
|
252 |
\ea alarm, that is, the BEL character (hex 07)
|
253 |
\ecx "control-x", where x is any ASCII character
|
254 |
\ee escape (hex 1B)
|
255 |
\ef form feed (hex 0C)
|
256 |
\en linefeed (hex 0A)
|
257 |
\er carriage return (hex 0D)
|
258 |
\et tab (hex 09)
|
259 |
\eddd character with octal code ddd, or back reference
|
260 |
\exhh character with hex code hh
|
261 |
\ex{hhh..} character with hex code hhh.. (non-JavaScript mode)
|
262 |
\euhhhh character with hex code hhhh (JavaScript mode only)
|
263 |
.sp
|
264 |
The precise effect of \ecx on ASCII characters is as follows: if x is a lower
|
265 |
case letter, it is converted to upper case. Then bit 6 of the character (hex
|
266 |
40) is inverted. Thus \ecA to \ecZ become hex 01 to hex 1A (A is 41, Z is 5A),
|
267 |
but \ec{ becomes hex 3B ({ is 7B), and \ec; becomes hex 7B (; is 3B). If the
|
268 |
data item (byte or 16-bit value) following \ec has a value greater than 127, a
|
269 |
compile-time error occurs. This locks out non-ASCII characters in all modes.
|
270 |
.P
|
271 |
The \ec facility was designed for use with ASCII characters, but with the
|
272 |
extension to Unicode it is even less useful than it once was. It is, however,
|
273 |
recognized when PCRE is compiled in EBCDIC mode, where data items are always
|
274 |
bytes. In this mode, all values are valid after \ec. If the next character is a
|
275 |
lower case letter, it is converted to upper case. Then the 0xc0 bits of the
|
276 |
byte are inverted. Thus \ecA becomes hex 01, as in ASCII (A is C1), but because
|
277 |
the EBCDIC letters are disjoint, \ecZ becomes hex 29 (Z is E9), and other
|
278 |
characters also generate different values.
|
279 |
.P
|
280 |
By default, after \ex, from zero to two hexadecimal digits are read (letters
|
281 |
can be in upper or lower case). Any number of hexadecimal digits may appear
|
282 |
between \ex{ and }, but the character code is constrained as follows:
|
283 |
.sp
|
284 |
8-bit non-UTF mode less than 0x100
|
285 |
8-bit UTF-8 mode less than 0x10ffff and a valid codepoint
|
286 |
16-bit non-UTF mode less than 0x10000
|
287 |
16-bit UTF-16 mode less than 0x10ffff and a valid codepoint
|
288 |
32-bit non-UTF mode less than 0x80000000
|
289 |
32-bit UTF-32 mode less than 0x10ffff and a valid codepoint
|
290 |
.sp
|
291 |
Invalid Unicode codepoints are the range 0xd800 to 0xdfff (the so-called
|
292 |
"surrogate" codepoints), and 0xffef.
|
293 |
.P
|
294 |
If characters other than hexadecimal digits appear between \ex{ and }, or if
|
295 |
there is no terminating }, this form of escape is not recognized. Instead, the
|
296 |
initial \ex will be interpreted as a basic hexadecimal escape, with no
|
297 |
following digits, giving a character whose value is zero.
|
298 |
.P
|
299 |
If the PCRE_JAVASCRIPT_COMPAT option is set, the interpretation of \ex is
|
300 |
as just described only when it is followed by two hexadecimal digits.
|
301 |
Otherwise, it matches a literal "x" character. In JavaScript mode, support for
|
302 |
code points greater than 256 is provided by \eu, which must be followed by
|
303 |
four hexadecimal digits; otherwise it matches a literal "u" character.
|
304 |
Character codes specified by \eu in JavaScript mode are constrained in the same
|
305 |
was as those specified by \ex in non-JavaScript mode.
|
306 |
.P
|
307 |
Characters whose value is less than 256 can be defined by either of the two
|
308 |
syntaxes for \ex (or by \eu in JavaScript mode). There is no difference in the
|
309 |
way they are handled. For example, \exdc is exactly the same as \ex{dc} (or
|
310 |
\eu00dc in JavaScript mode).
|
311 |
.P
|
312 |
After \e0 up to two further octal digits are read. If there are fewer than two
|
313 |
digits, just those that are present are used. Thus the sequence \e0\ex\e07
|
314 |
specifies two binary zeros followed by a BEL character (code value 7). Make
|
315 |
sure you supply two digits after the initial zero if the pattern character that
|
316 |
follows is itself an octal digit.
|
317 |
.P
|
318 |
The handling of a backslash followed by a digit other than 0 is complicated.
|
319 |
Outside a character class, PCRE reads it and any following digits as a decimal
|
320 |
number. If the number is less than 10, or if there have been at least that many
|
321 |
previous capturing left parentheses in the expression, the entire sequence is
|
322 |
taken as a \fIback reference\fP. A description of how this works is given
|
323 |
.\" HTML <a href="#backreferences">
|
324 |
.\" </a>
|
325 |
later,
|
326 |
.\"
|
327 |
following the discussion of
|
328 |
.\" HTML <a href="#subpattern">
|
329 |
.\" </a>
|
330 |
parenthesized subpatterns.
|
331 |
.\"
|
332 |
.P
|
333 |
Inside a character class, or if the decimal number is greater than 9 and there
|
334 |
have not been that many capturing subpatterns, PCRE re-reads up to three octal
|
335 |
digits following the backslash, and uses them to generate a data character. Any
|
336 |
subsequent digits stand for themselves. The value of the character is
|
337 |
constrained in the same way as characters specified in hexadecimal.
|
338 |
For example:
|
339 |
.sp
|
340 |
\e040 is another way of writing an ASCII space
|
341 |
.\" JOIN
|
342 |
\e40 is the same, provided there are fewer than 40
|
343 |
previous capturing subpatterns
|
344 |
\e7 is always a back reference
|
345 |
.\" JOIN
|
346 |
\e11 might be a back reference, or another way of
|
347 |
writing a tab
|
348 |
\e011 is always a tab
|
349 |
\e0113 is a tab followed by the character "3"
|
350 |
.\" JOIN
|
351 |
\e113 might be a back reference, otherwise the
|
352 |
character with octal code 113
|
353 |
.\" JOIN
|
354 |
\e377 might be a back reference, otherwise
|
355 |
the value 255 (decimal)
|
356 |
.\" JOIN
|
357 |
\e81 is either a back reference, or a binary zero
|
358 |
followed by the two characters "8" and "1"
|
359 |
.sp
|
360 |
Note that octal values of 100 or greater must not be introduced by a leading
|
361 |
zero, because no more than three octal digits are ever read.
|
362 |
.P
|
363 |
All the sequences that define a single character value can be used both inside
|
364 |
and outside character classes. In addition, inside a character class, \eb is
|
365 |
interpreted as the backspace character (hex 08).
|
366 |
.P
|
367 |
\eN is not allowed in a character class. \eB, \eR, and \eX are not special
|
368 |
inside a character class. Like other unrecognized escape sequences, they are
|
369 |
treated as the literal characters "B", "R", and "X" by default, but cause an
|
370 |
error if the PCRE_EXTRA option is set. Outside a character class, these
|
371 |
sequences have different meanings.
|
372 |
.
|
373 |
.
|
374 |
.SS "Unsupported escape sequences"
|
375 |
.rs
|
376 |
.sp
|
377 |
In Perl, the sequences \el, \eL, \eu, and \eU are recognized by its string
|
378 |
handler and used to modify the case of following characters. By default, PCRE
|
379 |
does not support these escape sequences. However, if the PCRE_JAVASCRIPT_COMPAT
|
380 |
option is set, \eU matches a "U" character, and \eu can be used to define a
|
381 |
character by code point, as described in the previous section.
|
382 |
.
|
383 |
.
|
384 |
.SS "Absolute and relative back references"
|
385 |
.rs
|
386 |
.sp
|
387 |
The sequence \eg followed by an unsigned or a negative number, optionally
|
388 |
enclosed in braces, is an absolute or relative back reference. A named back
|
389 |
reference can be coded as \eg{name}. Back references are discussed
|
390 |
.\" HTML <a href="#backreferences">
|
391 |
.\" </a>
|
392 |
later,
|
393 |
.\"
|
394 |
following the discussion of
|
395 |
.\" HTML <a href="#subpattern">
|
396 |
.\" </a>
|
397 |
parenthesized subpatterns.
|
398 |
.\"
|
399 |
.
|
400 |
.
|
401 |
.SS "Absolute and relative subroutine calls"
|
402 |
.rs
|
403 |
.sp
|
404 |
For compatibility with Oniguruma, the non-Perl syntax \eg followed by a name or
|
405 |
a number enclosed either in angle brackets or single quotes, is an alternative
|
406 |
syntax for referencing a subpattern as a "subroutine". Details are discussed
|
407 |
.\" HTML <a href="#onigurumasubroutines">
|
408 |
.\" </a>
|
409 |
later.
|
410 |
.\"
|
411 |
Note that \eg{...} (Perl syntax) and \eg<...> (Oniguruma syntax) are \fInot\fP
|
412 |
synonymous. The former is a back reference; the latter is a
|
413 |
.\" HTML <a href="#subpatternsassubroutines">
|
414 |
.\" </a>
|
415 |
subroutine
|
416 |
.\"
|
417 |
call.
|
418 |
.
|
419 |
.
|
420 |
.\" HTML <a name="genericchartypes"></a>
|
421 |
.SS "Generic character types"
|
422 |
.rs
|
423 |
.sp
|
424 |
Another use of backslash is for specifying generic character types:
|
425 |
.sp
|
426 |
\ed any decimal digit
|
427 |
\eD any character that is not a decimal digit
|
428 |
\eh any horizontal white space character
|
429 |
\eH any character that is not a horizontal white space character
|
430 |
\es any white space character
|
431 |
\eS any character that is not a white space character
|
432 |
\ev any vertical white space character
|
433 |
\eV any character that is not a vertical white space character
|
434 |
\ew any "word" character
|
435 |
\eW any "non-word" character
|
436 |
.sp
|
437 |
There is also the single sequence \eN, which matches a non-newline character.
|
438 |
This is the same as
|
439 |
.\" HTML <a href="#fullstopdot">
|
440 |
.\" </a>
|
441 |
the "." metacharacter
|
442 |
.\"
|
443 |
when PCRE_DOTALL is not set. Perl also uses \eN to match characters by name;
|
444 |
PCRE does not support this.
|
445 |
.P
|
446 |
Each pair of lower and upper case escape sequences partitions the complete set
|
447 |
of characters into two disjoint sets. Any given character matches one, and only
|
448 |
one, of each pair. The sequences can appear both inside and outside character
|
449 |
classes. They each match one character of the appropriate type. If the current
|
450 |
matching point is at the end of the subject string, all of them fail, because
|
451 |
there is no character to match.
|
452 |
.P
|
453 |
For compatibility with Perl, \es does not match the VT character (code 11).
|
454 |
This makes it different from the the POSIX "space" class. The \es characters
|
455 |
are HT (9), LF (10), FF (12), CR (13), and space (32). If "use locale;" is
|
456 |
included in a Perl script, \es may match the VT character. In PCRE, it never
|
457 |
does.
|
458 |
.P
|
459 |
A "word" character is an underscore or any character that is a letter or digit.
|
460 |
By default, the definition of letters and digits is controlled by PCRE's
|
461 |
low-valued character tables, and may vary if locale-specific matching is taking
|
462 |
place (see
|
463 |
.\" HTML <a href="pcreapi.html#localesupport">
|
464 |
.\" </a>
|
465 |
"Locale support"
|
466 |
.\"
|
467 |
in the
|
468 |
.\" HREF
|
469 |
\fBpcreapi\fP
|
470 |
.\"
|
471 |
page). For example, in a French locale such as "fr_FR" in Unix-like systems,
|
472 |
or "french" in Windows, some character codes greater than 128 are used for
|
473 |
accented letters, and these are then matched by \ew. The use of locales with
|
474 |
Unicode is discouraged.
|
475 |
.P
|
476 |
By default, in a UTF mode, characters with values greater than 128 never match
|
477 |
\ed, \es, or \ew, and always match \eD, \eS, and \eW. These sequences retain
|
478 |
their original meanings from before UTF support was available, mainly for
|
479 |
efficiency reasons. However, if PCRE is compiled with Unicode property support,
|
480 |
and the PCRE_UCP option is set, the behaviour is changed so that Unicode
|
481 |
properties are used to determine character types, as follows:
|
482 |
.sp
|
483 |
\ed any character that \ep{Nd} matches (decimal digit)
|
484 |
\es any character that \ep{Z} matches, plus HT, LF, FF, CR
|
485 |
\ew any character that \ep{L} or \ep{N} matches, plus underscore
|
486 |
.sp
|
487 |
The upper case escapes match the inverse sets of characters. Note that \ed
|
488 |
matches only decimal digits, whereas \ew matches any Unicode digit, as well as
|
489 |
any Unicode letter, and underscore. Note also that PCRE_UCP affects \eb, and
|
490 |
\eB because they are defined in terms of \ew and \eW. Matching these sequences
|
491 |
is noticeably slower when PCRE_UCP is set.
|
492 |
.P
|
493 |
The sequences \eh, \eH, \ev, and \eV are features that were added to Perl at
|
494 |
release 5.10. In contrast to the other sequences, which match only ASCII
|
495 |
characters by default, these always match certain high-valued codepoints,
|
496 |
whether or not PCRE_UCP is set. The horizontal space characters are:
|
497 |
.sp
|
498 |
U+0009 Horizontal tab (HT)
|
499 |
U+0020 Space
|
500 |
U+00A0 Non-break space
|
501 |
U+1680 Ogham space mark
|
502 |
U+180E Mongolian vowel separator
|
503 |
U+2000 En quad
|
504 |
U+2001 Em quad
|
505 |
U+2002 En space
|
506 |
U+2003 Em space
|
507 |
U+2004 Three-per-em space
|
508 |
U+2005 Four-per-em space
|
509 |
U+2006 Six-per-em space
|
510 |
U+2007 Figure space
|
511 |
U+2008 Punctuation space
|
512 |
U+2009 Thin space
|
513 |
U+200A Hair space
|
514 |
U+202F Narrow no-break space
|
515 |
U+205F Medium mathematical space
|
516 |
U+3000 Ideographic space
|
517 |
.sp
|
518 |
The vertical space characters are:
|
519 |
.sp
|
520 |
U+000A Linefeed (LF)
|
521 |
U+000B Vertical tab (VT)
|
522 |
U+000C Form feed (FF)
|
523 |
U+000D Carriage return (CR)
|
524 |
U+0085 Next line (NEL)
|
525 |
U+2028 Line separator
|
526 |
U+2029 Paragraph separator
|
527 |
.sp
|
528 |
In 8-bit, non-UTF-8 mode, only the characters with codepoints less than 256 are
|
529 |
relevant.
|
530 |
.
|
531 |
.
|
532 |
.\" HTML <a name="newlineseq"></a>
|
533 |
.SS "Newline sequences"
|
534 |
.rs
|
535 |
.sp
|
536 |
Outside a character class, by default, the escape sequence \eR matches any
|
537 |
Unicode newline sequence. In 8-bit non-UTF-8 mode \eR is equivalent to the
|
538 |
following:
|
539 |
.sp
|
540 |
(?>\er\en|\en|\ex0b|\ef|\er|\ex85)
|
541 |
.sp
|
542 |
This is an example of an "atomic group", details of which are given
|
543 |
.\" HTML <a href="#atomicgroup">
|
544 |
.\" </a>
|
545 |
below.
|
546 |
.\"
|
547 |
This particular group matches either the two-character sequence CR followed by
|
548 |
LF, or one of the single characters LF (linefeed, U+000A), VT (vertical tab,
|
549 |
U+000B), FF (form feed, U+000C), CR (carriage return, U+000D), or NEL (next
|
550 |
line, U+0085). The two-character sequence is treated as a single unit that
|
551 |
cannot be split.
|
552 |
.P
|
553 |
In other modes, two additional characters whose codepoints are greater than 255
|
554 |
are added: LS (line separator, U+2028) and PS (paragraph separator, U+2029).
|
555 |
Unicode character property support is not needed for these characters to be
|
556 |
recognized.
|
557 |
.P
|
558 |
It is possible to restrict \eR to match only CR, LF, or CRLF (instead of the
|
559 |
complete set of Unicode line endings) by setting the option PCRE_BSR_ANYCRLF
|
560 |
either at compile time or when the pattern is matched. (BSR is an abbrevation
|
561 |
for "backslash R".) This can be made the default when PCRE is built; if this is
|
562 |
the case, the other behaviour can be requested via the PCRE_BSR_UNICODE option.
|
563 |
It is also possible to specify these settings by starting a pattern string with
|
564 |
one of the following sequences:
|
565 |
.sp
|
566 |
(*BSR_ANYCRLF) CR, LF, or CRLF only
|
567 |
(*BSR_UNICODE) any Unicode newline sequence
|
568 |
.sp
|
569 |
These override the default and the options given to the compiling function, but
|
570 |
they can themselves be overridden by options given to a matching function. Note
|
571 |
that these special settings, which are not Perl-compatible, are recognized only
|
572 |
at the very start of a pattern, and that they must be in upper case. If more
|
573 |
than one of them is present, the last one is used. They can be combined with a
|
574 |
change of newline convention; for example, a pattern can start with:
|
575 |
.sp
|
576 |
(*ANY)(*BSR_ANYCRLF)
|
577 |
.sp
|
578 |
They can also be combined with the (*UTF8), (*UTF16), (*UTF32), (*UTF) or
|
579 |
(*UCP) special sequences. Inside a character class, \eR is treated as an
|
580 |
unrecognized escape sequence, and so matches the letter "R" by default, but
|
581 |
causes an error if PCRE_EXTRA is set.
|
582 |
.
|
583 |
.
|
584 |
.\" HTML <a name="uniextseq"></a>
|
585 |
.SS Unicode character properties
|
586 |
.rs
|
587 |
.sp
|
588 |
When PCRE is built with Unicode character property support, three additional
|
589 |
escape sequences that match characters with specific properties are available.
|
590 |
When in 8-bit non-UTF-8 mode, these sequences are of course limited to testing
|
591 |
characters whose codepoints are less than 256, but they do work in this mode.
|
592 |
The extra escape sequences are:
|
593 |
.sp
|
594 |
\ep{\fIxx\fP} a character with the \fIxx\fP property
|
595 |
\eP{\fIxx\fP} a character without the \fIxx\fP property
|
596 |
\eX a Unicode extended grapheme cluster
|
597 |
.sp
|
598 |
The property names represented by \fIxx\fP above are limited to the Unicode
|
599 |
script names, the general category properties, "Any", which matches any
|
600 |
character (including newline), and some special PCRE properties (described
|
601 |
in the
|
602 |
.\" HTML <a href="#extraprops">
|
603 |
.\" </a>
|
604 |
next section).
|
605 |
.\"
|
606 |
Other Perl properties such as "InMusicalSymbols" are not currently supported by
|
607 |
PCRE. Note that \eP{Any} does not match any characters, so always causes a
|
608 |
match failure.
|
609 |
.P
|
610 |
Sets of Unicode characters are defined as belonging to certain scripts. A
|
611 |
character from one of these sets can be matched using a script name. For
|
612 |
example:
|
613 |
.sp
|
614 |
\ep{Greek}
|
615 |
\eP{Han}
|
616 |
.sp
|
617 |
Those that are not part of an identified script are lumped together as
|
618 |
"Common". The current list of scripts is:
|
619 |
.P
|
620 |
Arabic,
|
621 |
Armenian,
|
622 |
Avestan,
|
623 |
Balinese,
|
624 |
Bamum,
|
625 |
Batak,
|
626 |
Bengali,
|
627 |
Bopomofo,
|
628 |
Brahmi,
|
629 |
Braille,
|
630 |
Buginese,
|
631 |
Buhid,
|
632 |
Canadian_Aboriginal,
|
633 |
Carian,
|
634 |
Chakma,
|
635 |
Cham,
|
636 |
Cherokee,
|
637 |
Common,
|
638 |
Coptic,
|
639 |
Cuneiform,
|
640 |
Cypriot,
|
641 |
Cyrillic,
|
642 |
Deseret,
|
643 |
Devanagari,
|
644 |
Egyptian_Hieroglyphs,
|
645 |
Ethiopic,
|
646 |
Georgian,
|
647 |
Glagolitic,
|
648 |
Gothic,
|
649 |
Greek,
|
650 |
Gujarati,
|
651 |
Gurmukhi,
|
652 |
Han,
|
653 |
Hangul,
|
654 |
Hanunoo,
|
655 |
Hebrew,
|
656 |
Hiragana,
|
657 |
Imperial_Aramaic,
|
658 |
Inherited,
|
659 |
Inscriptional_Pahlavi,
|
660 |
Inscriptional_Parthian,
|
661 |
Javanese,
|
662 |
Kaithi,
|
663 |
Kannada,
|
664 |
Katakana,
|
665 |
Kayah_Li,
|
666 |
Kharoshthi,
|
667 |
Khmer,
|
668 |
Lao,
|
669 |
Latin,
|
670 |
Lepcha,
|
671 |
Limbu,
|
672 |
Linear_B,
|
673 |
Lisu,
|
674 |
Lycian,
|
675 |
Lydian,
|
676 |
Malayalam,
|
677 |
Mandaic,
|
678 |
Meetei_Mayek,
|
679 |
Meroitic_Cursive,
|
680 |
Meroitic_Hieroglyphs,
|
681 |
Miao,
|
682 |
Mongolian,
|
683 |
Myanmar,
|
684 |
New_Tai_Lue,
|
685 |
Nko,
|
686 |
Ogham,
|
687 |
Old_Italic,
|
688 |
Old_Persian,
|
689 |
Old_South_Arabian,
|
690 |
Old_Turkic,
|
691 |
Ol_Chiki,
|
692 |
Oriya,
|
693 |
Osmanya,
|
694 |
Phags_Pa,
|
695 |
Phoenician,
|
696 |
Rejang,
|
697 |
Runic,
|
698 |
Samaritan,
|
699 |
Saurashtra,
|
700 |
Sharada,
|
701 |
Shavian,
|
702 |
Sinhala,
|
703 |
Sora_Sompeng,
|
704 |
Sundanese,
|
705 |
Syloti_Nagri,
|
706 |
Syriac,
|
707 |
Tagalog,
|
708 |
Tagbanwa,
|
709 |
Tai_Le,
|
710 |
Tai_Tham,
|
711 |
Tai_Viet,
|
712 |
Takri,
|
713 |
Tamil,
|
714 |
Telugu,
|
715 |
Thaana,
|
716 |
Thai,
|
717 |
Tibetan,
|
718 |
Tifinagh,
|
719 |
Ugaritic,
|
720 |
Vai,
|
721 |
Yi.
|
722 |
.P
|
723 |
Each character has exactly one Unicode general category property, specified by
|
724 |
a two-letter abbreviation. For compatibility with Perl, negation can be
|
725 |
specified by including a circumflex between the opening brace and the property
|
726 |
name. For example, \ep{^Lu} is the same as \eP{Lu}.
|
727 |
.P
|
728 |
If only one letter is specified with \ep or \eP, it includes all the general
|
729 |
category properties that start with that letter. In this case, in the absence
|
730 |
of negation, the curly brackets in the escape sequence are optional; these two
|
731 |
examples have the same effect:
|
732 |
.sp
|
733 |
\ep{L}
|
734 |
\epL
|
735 |
.sp
|
736 |
The following general category property codes are supported:
|
737 |
.sp
|
738 |
C Other
|
739 |
Cc Control
|
740 |
Cf Format
|
741 |
Cn Unassigned
|
742 |
Co Private use
|
743 |
Cs Surrogate
|
744 |
.sp
|
745 |
L Letter
|
746 |
Ll Lower case letter
|
747 |
Lm Modifier letter
|
748 |
Lo Other letter
|
749 |
Lt Title case letter
|
750 |
Lu Upper case letter
|
751 |
.sp
|
752 |
M Mark
|
753 |
Mc Spacing mark
|
754 |
Me Enclosing mark
|
755 |
Mn Non-spacing mark
|
756 |
.sp
|
757 |
N Number
|
758 |
Nd Decimal number
|
759 |
Nl Letter number
|
760 |
No Other number
|
761 |
.sp
|
762 |
P Punctuation
|
763 |
Pc Connector punctuation
|
764 |
Pd Dash punctuation
|
765 |
Pe Close punctuation
|
766 |
Pf Final punctuation
|
767 |
Pi Initial punctuation
|
768 |
Po Other punctuation
|
769 |
Ps Open punctuation
|
770 |
.sp
|
771 |
S Symbol
|
772 |
Sc Currency symbol
|
773 |
Sk Modifier symbol
|
774 |
Sm Mathematical symbol
|
775 |
So Other symbol
|
776 |
.sp
|
777 |
Z Separator
|
778 |
Zl Line separator
|
779 |
Zp Paragraph separator
|
780 |
Zs Space separator
|
781 |
.sp
|
782 |
The special property L& is also supported: it matches a character that has
|
783 |
the Lu, Ll, or Lt property, in other words, a letter that is not classified as
|
784 |
a modifier or "other".
|
785 |
.P
|
786 |
The Cs (Surrogate) property applies only to characters in the range U+D800 to
|
787 |
U+DFFF. Such characters are not valid in Unicode strings and so
|
788 |
cannot be tested by PCRE, unless UTF validity checking has been turned off
|
789 |
(see the discussion of PCRE_NO_UTF8_CHECK, PCRE_NO_UTF16_CHECK and
|
790 |
PCRE_NO_UTF32_CHECK in the
|
791 |
.\" HREF
|
792 |
\fBpcreapi\fP
|
793 |
.\"
|
794 |
page). Perl does not support the Cs property.
|
795 |
.P
|
796 |
The long synonyms for property names that Perl supports (such as \ep{Letter})
|
797 |
are not supported by PCRE, nor is it permitted to prefix any of these
|
798 |
properties with "Is".
|
799 |
.P
|
800 |
No character that is in the Unicode table has the Cn (unassigned) property.
|
801 |
Instead, this property is assumed for any code point that is not in the
|
802 |
Unicode table.
|
803 |
.P
|
804 |
Specifying caseless matching does not affect these escape sequences. For
|
805 |
example, \ep{Lu} always matches only upper case letters.
|
806 |
.P
|
807 |
Matching characters by Unicode property is not fast, because PCRE has to do a
|
808 |
multistage table lookup in order to find a character's property. That is why
|
809 |
the traditional escape sequences such as \ed and \ew do not use Unicode
|
810 |
properties in PCRE by default, though you can make them do so by setting the
|
811 |
PCRE_UCP option or by starting the pattern with (*UCP).
|
812 |
.
|
813 |
.
|
814 |
.SS Extended grapheme clusters
|
815 |
.rs
|
816 |
.sp
|
817 |
The \eX escape matches any number of Unicode characters that form an "extended
|
818 |
grapheme cluster", and treats the sequence as an atomic group
|
819 |
.\" HTML <a href="#atomicgroup">
|
820 |
.\" </a>
|
821 |
(see below).
|
822 |
.\"
|
823 |
Up to and including release 8.31, PCRE matched an earlier, simpler definition
|
824 |
that was equivalent to
|
825 |
.sp
|
826 |
(?>\ePM\epM*)
|
827 |
.sp
|
828 |
That is, it matched a character without the "mark" property, followed by zero
|
829 |
or more characters with the "mark" property. Characters with the "mark"
|
830 |
property are typically non-spacing accents that affect the preceding character.
|
831 |
.P
|
832 |
This simple definition was extended in Unicode to include more complicated
|
833 |
kinds of composite character by giving each character a grapheme breaking
|
834 |
property, and creating rules that use these properties to define the boundaries
|
835 |
of extended grapheme clusters. In releases of PCRE later than 8.31, \eX matches
|
836 |
one of these clusters.
|
837 |
.P
|
838 |
\eX always matches at least one character. Then it decides whether to add
|
839 |
additional characters according to the following rules for ending a cluster:
|
840 |
.P
|
841 |
1. End at the end of the subject string.
|
842 |
.P
|
843 |
2. Do not end between CR and LF; otherwise end after any control character.
|
844 |
.P
|
845 |
3. Do not break Hangul (a Korean script) syllable sequences. Hangul characters
|
846 |
are of five types: L, V, T, LV, and LVT. An L character may be followed by an
|
847 |
L, V, LV, or LVT character; an LV or V character may be followed by a V or T
|
848 |
character; an LVT or T character may be follwed only by a T character.
|
849 |
.P
|
850 |
4. Do not end before extending characters or spacing marks. Characters with
|
851 |
the "mark" property always have the "extend" grapheme breaking property.
|
852 |
.P
|
853 |
5. Do not end after prepend characters.
|
854 |
.P
|
855 |
6. Otherwise, end the cluster.
|
856 |
.
|
857 |
.
|
858 |
.\" HTML <a name="extraprops"></a>
|
859 |
.SS PCRE's additional properties
|
860 |
.rs
|
861 |
.sp
|
862 |
As well as the standard Unicode properties described above, PCRE supports four
|
863 |
more that make it possible to convert traditional escape sequences such as \ew
|
864 |
and \es and POSIX character classes to use Unicode properties. PCRE uses these
|
865 |
non-standard, non-Perl properties internally when PCRE_UCP is set. They are:
|
866 |
.sp
|
867 |
Xan Any alphanumeric character
|
868 |
Xps Any POSIX space character
|
869 |
Xsp Any Perl space character
|
870 |
Xwd Any Perl "word" character
|
871 |
.sp
|
872 |
Xan matches characters that have either the L (letter) or the N (number)
|
873 |
property. Xps matches the characters tab, linefeed, vertical tab, form feed, or
|
874 |
carriage return, and any other character that has the Z (separator) property.
|
875 |
Xsp is the same as Xps, except that vertical tab is excluded. Xwd matches the
|
876 |
same characters as Xan, plus underscore.
|
877 |
.
|
878 |
.
|
879 |
.\" HTML <a name="resetmatchstart"></a>
|
880 |
.SS "Resetting the match start"
|
881 |
.rs
|
882 |
.sp
|
883 |
The escape sequence \eK causes any previously matched characters not to be
|
884 |
included in the final matched sequence. For example, the pattern:
|
885 |
.sp
|
886 |
foo\eKbar
|
887 |
.sp
|
888 |
matches "foobar", but reports that it has matched "bar". This feature is
|
889 |
similar to a lookbehind assertion
|
890 |
.\" HTML <a href="#lookbehind">
|
891 |
.\" </a>
|
892 |
(described below).
|
893 |
.\"
|
894 |
However, in this case, the part of the subject before the real match does not
|
895 |
have to be of fixed length, as lookbehind assertions do. The use of \eK does
|
896 |
not interfere with the setting of
|
897 |
.\" HTML <a href="#subpattern">
|
898 |
.\" </a>
|
899 |
captured substrings.
|
900 |
.\"
|
901 |
For example, when the pattern
|
902 |
.sp
|
903 |
(foo)\eKbar
|
904 |
.sp
|
905 |
matches "foobar", the first substring is still set to "foo".
|
906 |
.P
|
907 |
Perl documents that the use of \eK within assertions is "not well defined". In
|
908 |
PCRE, \eK is acted upon when it occurs inside positive assertions, but is
|
909 |
ignored in negative assertions.
|
910 |
.
|
911 |
.
|
912 |
.\" HTML <a name="smallassertions"></a>
|
913 |
.SS "Simple assertions"
|
914 |
.rs
|
915 |
.sp
|
916 |
The final use of backslash is for certain simple assertions. An assertion
|
917 |
specifies a condition that has to be met at a particular point in a match,
|
918 |
without consuming any characters from the subject string. The use of
|
919 |
subpatterns for more complicated assertions is described
|
920 |
.\" HTML <a href="#bigassertions">
|
921 |
.\" </a>
|
922 |
below.
|
923 |
.\"
|
924 |
The backslashed assertions are:
|
925 |
.sp
|
926 |
\eb matches at a word boundary
|
927 |
\eB matches when not at a word boundary
|
928 |
\eA matches at the start of the subject
|
929 |
\eZ matches at the end of the subject
|
930 |
also matches before a newline at the end of the subject
|
931 |
\ez matches only at the end of the subject
|
932 |
\eG matches at the first matching position in the subject
|
933 |
.sp
|
934 |
Inside a character class, \eb has a different meaning; it matches the backspace
|
935 |
character. If any other of these assertions appears in a character class, by
|
936 |
default it matches the corresponding literal character (for example, \eB
|
937 |
matches the letter B). However, if the PCRE_EXTRA option is set, an "invalid
|
938 |
escape sequence" error is generated instead.
|
939 |
.P
|
940 |
A word boundary is a position in the subject string where the current character
|
941 |
and the previous character do not both match \ew or \eW (i.e. one matches
|
942 |
\ew and the other matches \eW), or the start or end of the string if the
|
943 |
first or last character matches \ew, respectively. In a UTF mode, the meanings
|
944 |
of \ew and \eW can be changed by setting the PCRE_UCP option. When this is
|
945 |
done, it also affects \eb and \eB. Neither PCRE nor Perl has a separate "start
|
946 |
of word" or "end of word" metasequence. However, whatever follows \eb normally
|
947 |
determines which it is. For example, the fragment \eba matches "a" at the start
|
948 |
of a word.
|
949 |
.P
|
950 |
The \eA, \eZ, and \ez assertions differ from the traditional circumflex and
|
951 |
dollar (described in the next section) in that they only ever match at the very
|
952 |
start and end of the subject string, whatever options are set. Thus, they are
|
953 |
independent of multiline mode. These three assertions are not affected by the
|
954 |
PCRE_NOTBOL or PCRE_NOTEOL options, which affect only the behaviour of the
|
955 |
circumflex and dollar metacharacters. However, if the \fIstartoffset\fP
|
956 |
argument of \fBpcre_exec()\fP is non-zero, indicating that matching is to start
|
957 |
at a point other than the beginning of the subject, \eA can never match. The
|
958 |
difference between \eZ and \ez is that \eZ matches before a newline at the end
|
959 |
of the string as well as at the very end, whereas \ez matches only at the end.
|
960 |
.P
|
961 |
The \eG assertion is true only when the current matching position is at the
|
962 |
start point of the match, as specified by the \fIstartoffset\fP argument of
|
963 |
\fBpcre_exec()\fP. It differs from \eA when the value of \fIstartoffset\fP is
|
964 |
non-zero. By calling \fBpcre_exec()\fP multiple times with appropriate
|
965 |
arguments, you can mimic Perl's /g option, and it is in this kind of
|
966 |
implementation where \eG can be useful.
|
967 |
.P
|
968 |
Note, however, that PCRE's interpretation of \eG, as the start of the current
|
969 |
match, is subtly different from Perl's, which defines it as the end of the
|
970 |
previous match. In Perl, these can be different when the previously matched
|
971 |
string was empty. Because PCRE does just one match at a time, it cannot
|
972 |
reproduce this behaviour.
|
973 |
.P
|
974 |
If all the alternatives of a pattern begin with \eG, the expression is anchored
|
975 |
to the starting match position, and the "anchored" flag is set in the compiled
|
976 |
regular expression.
|
977 |
.
|
978 |
.
|
979 |
.SH "CIRCUMFLEX AND DOLLAR"
|
980 |
.rs
|
981 |
.sp
|
982 |
The circumflex and dollar metacharacters are zero-width assertions. That is,
|
983 |
they test for a particular condition being true without consuming any
|
984 |
characters from the subject string.
|
985 |
.P
|
986 |
Outside a character class, in the default matching mode, the circumflex
|
987 |
character is an assertion that is true only if the current matching point is at
|
988 |
the start of the subject string. If the \fIstartoffset\fP argument of
|
989 |
\fBpcre_exec()\fP is non-zero, circumflex can never match if the PCRE_MULTILINE
|
990 |
option is unset. Inside a character class, circumflex has an entirely different
|
991 |
meaning
|
992 |
.\" HTML <a href="#characterclass">
|
993 |
.\" </a>
|
994 |
(see below).
|
995 |
.\"
|
996 |
.P
|
997 |
Circumflex need not be the first character of the pattern if a number of
|
998 |
alternatives are involved, but it should be the first thing in each alternative
|
999 |
in which it appears if the pattern is ever to match that branch. If all
|
1000 |
possible alternatives start with a circumflex, that is, if the pattern is
|
1001 |
constrained to match only at the start of the subject, it is said to be an
|
1002 |
"anchored" pattern. (There are also other constructs that can cause a pattern
|
1003 |
to be anchored.)
|
1004 |
.P
|
1005 |
The dollar character is an assertion that is true only if the current matching
|
1006 |
point is at the end of the subject string, or immediately before a newline at
|
1007 |
the end of the string (by default). Note, however, that it does not actually
|
1008 |
match the newline. Dollar need not be the last character of the pattern if a
|
1009 |
number of alternatives are involved, but it should be the last item in any
|
1010 |
branch in which it appears. Dollar has no special meaning in a character class.
|
1011 |
.P
|
1012 |
The meaning of dollar can be changed so that it matches only at the very end of
|
1013 |
the string, by setting the PCRE_DOLLAR_ENDONLY option at compile time. This
|
1014 |
does not affect the \eZ assertion.
|
1015 |
.P
|
1016 |
The meanings of the circumflex and dollar characters are changed if the
|
1017 |
PCRE_MULTILINE option is set. When this is the case, a circumflex matches
|
1018 |
immediately after internal newlines as well as at the start of the subject
|
1019 |
string. It does not match after a newline that ends the string. A dollar
|
1020 |
matches before any newlines in the string, as well as at the very end, when
|
1021 |
PCRE_MULTILINE is set. When newline is specified as the two-character
|
1022 |
sequence CRLF, isolated CR and LF characters do not indicate newlines.
|
1023 |
.P
|
1024 |
For example, the pattern /^abc$/ matches the subject string "def\enabc" (where
|
1025 |
\en represents a newline) in multiline mode, but not otherwise. Consequently,
|
1026 |
patterns that are anchored in single line mode because all branches start with
|
1027 |
^ are not anchored in multiline mode, and a match for circumflex is possible
|
1028 |
when the \fIstartoffset\fP argument of \fBpcre_exec()\fP is non-zero. The
|
1029 |
PCRE_DOLLAR_ENDONLY option is ignored if PCRE_MULTILINE is set.
|
1030 |
.P
|
1031 |
Note that the sequences \eA, \eZ, and \ez can be used to match the start and
|
1032 |
end of the subject in both modes, and if all branches of a pattern start with
|
1033 |
\eA it is always anchored, whether or not PCRE_MULTILINE is set.
|
1034 |
.
|
1035 |
.
|
1036 |
.\" HTML <a name="fullstopdot"></a>
|
1037 |
.SH "FULL STOP (PERIOD, DOT) AND \eN"
|
1038 |
.rs
|
1039 |
.sp
|
1040 |
Outside a character class, a dot in the pattern matches any one character in
|
1041 |
the subject string except (by default) a character that signifies the end of a
|
1042 |
line.
|
1043 |
.P
|
1044 |
When a line ending is defined as a single character, dot never matches that
|
1045 |
character; when the two-character sequence CRLF is used, dot does not match CR
|
1046 |
if it is immediately followed by LF, but otherwise it matches all characters
|
1047 |
(including isolated CRs and LFs). When any Unicode line endings are being
|
1048 |
recognized, dot does not match CR or LF or any of the other line ending
|
1049 |
characters.
|
1050 |
.P
|
1051 |
The behaviour of dot with regard to newlines can be changed. If the PCRE_DOTALL
|
1052 |
option is set, a dot matches any one character, without exception. If the
|
1053 |
two-character sequence CRLF is present in the subject string, it takes two dots
|
1054 |
to match it.
|
1055 |
.P
|
1056 |
The handling of dot is entirely independent of the handling of circumflex and
|
1057 |
dollar, the only relationship being that they both involve newlines. Dot has no
|
1058 |
special meaning in a character class.
|
1059 |
.P
|
1060 |
The escape sequence \eN behaves like a dot, except that it is not affected by
|
1061 |
the PCRE_DOTALL option. In other words, it matches any character except one
|
1062 |
that signifies the end of a line. Perl also uses \eN to match characters by
|
1063 |
name; PCRE does not support this.
|
1064 |
.
|
1065 |
.
|
1066 |
.SH "MATCHING A SINGLE DATA UNIT"
|
1067 |
.rs
|
1068 |
.sp
|
1069 |
Outside a character class, the escape sequence \eC matches any one data unit,
|
1070 |
whether or not a UTF mode is set. In the 8-bit library, one data unit is one
|
1071 |
byte; in the 16-bit library it is a 16-bit unit; in the 32-bit library it is
|
1072 |
a 32-bit unit. Unlike a dot, \eC always
|
1073 |
matches line-ending characters. The feature is provided in Perl in order to
|
1074 |
match individual bytes in UTF-8 mode, but it is unclear how it can usefully be
|
1075 |
used. Because \eC breaks up characters into individual data units, matching one
|
1076 |
unit with \eC in a UTF mode means that the rest of the string may start with a
|
1077 |
malformed UTF character. This has undefined results, because PCRE assumes that
|
1078 |
it is dealing with valid UTF strings (and by default it checks this at the
|
1079 |
start of processing unless the PCRE_NO_UTF8_CHECK, PCRE_NO_UTF16_CHECK or
|
1080 |
PCRE_NO_UTF32_CHECK option is used).
|
1081 |
.P
|
1082 |
PCRE does not allow \eC to appear in lookbehind assertions
|
1083 |
.\" HTML <a href="#lookbehind">
|
1084 |
.\" </a>
|
1085 |
(described below)
|
1086 |
.\"
|
1087 |
in a UTF mode, because this would make it impossible to calculate the length of
|
1088 |
the lookbehind.
|
1089 |
.P
|
1090 |
In general, the \eC escape sequence is best avoided. However, one
|
1091 |
way of using it that avoids the problem of malformed UTF characters is to use a
|
1092 |
lookahead to check the length of the next character, as in this pattern, which
|
1093 |
could be used with a UTF-8 string (ignore white space and line breaks):
|
1094 |
.sp
|
1095 |
(?| (?=[\ex00-\ex7f])(\eC) |
|
1096 |
(?=[\ex80-\ex{7ff}])(\eC)(\eC) |
|
1097 |
(?=[\ex{800}-\ex{ffff}])(\eC)(\eC)(\eC) |
|
1098 |
(?=[\ex{10000}-\ex{1fffff}])(\eC)(\eC)(\eC)(\eC))
|
1099 |
.sp
|
1100 |
A group that starts with (?| resets the capturing parentheses numbers in each
|
1101 |
alternative (see
|
1102 |
.\" HTML <a href="#dupsubpatternnumber">
|
1103 |
.\" </a>
|
1104 |
"Duplicate Subpattern Numbers"
|
1105 |
.\"
|
1106 |
below). The assertions at the start of each branch check the next UTF-8
|
1107 |
character for values whose encoding uses 1, 2, 3, or 4 bytes, respectively. The
|
1108 |
character's individual bytes are then captured by the appropriate number of
|
1109 |
groups.
|
1110 |
.
|
1111 |
.
|
1112 |
.\" HTML <a name="characterclass"></a>
|
1113 |
.SH "SQUARE BRACKETS AND CHARACTER CLASSES"
|
1114 |
.rs
|
1115 |
.sp
|
1116 |
An opening square bracket introduces a character class, terminated by a closing
|
1117 |
square bracket. A closing square bracket on its own is not special by default.
|
1118 |
However, if the PCRE_JAVASCRIPT_COMPAT option is set, a lone closing square
|
1119 |
bracket causes a compile-time error. If a closing square bracket is required as
|
1120 |
a member of the class, it should be the first data character in the class
|
1121 |
(after an initial circumflex, if present) or escaped with a backslash.
|
1122 |
.P
|
1123 |
A character class matches a single character in the subject. In a UTF mode, the
|
1124 |
character may be more than one data unit long. A matched character must be in
|
1125 |
the set of characters defined by the class, unless the first character in the
|
1126 |
class definition is a circumflex, in which case the subject character must not
|
1127 |
be in the set defined by the class. If a circumflex is actually required as a
|
1128 |
member of the class, ensure it is not the first character, or escape it with a
|
1129 |
backslash.
|
1130 |
.P
|
1131 |
For example, the character class [aeiou] matches any lower case vowel, while
|
1132 |
[^aeiou] matches any character that is not a lower case vowel. Note that a
|
1133 |
circumflex is just a convenient notation for specifying the characters that
|
1134 |
are in the class by enumerating those that are not. A class that starts with a
|
1135 |
circumflex is not an assertion; it still consumes a character from the subject
|
1136 |
string, and therefore it fails if the current pointer is at the end of the
|
1137 |
string.
|
1138 |
.P
|
1139 |
In UTF-8 (UTF-16, UTF-32) mode, characters with values greater than 255 (0xffff)
|
1140 |
can be included in a class as a literal string of data units, or by using the
|
1141 |
\ex{ escaping mechanism.
|
1142 |
.P
|
1143 |
When caseless matching is set, any letters in a class represent both their
|
1144 |
upper case and lower case versions, so for example, a caseless [aeiou] matches
|
1145 |
"A" as well as "a", and a caseless [^aeiou] does not match "A", whereas a
|
1146 |
caseful version would. In a UTF mode, PCRE always understands the concept of
|
1147 |
case for characters whose values are less than 128, so caseless matching is
|
1148 |
always possible. For characters with higher values, the concept of case is
|
1149 |
supported if PCRE is compiled with Unicode property support, but not otherwise.
|
1150 |
If you want to use caseless matching in a UTF mode for characters 128 and
|
1151 |
above, you must ensure that PCRE is compiled with Unicode property support as
|
1152 |
well as with UTF support.
|
1153 |
.P
|
1154 |
Characters that might indicate line breaks are never treated in any special way
|
1155 |
when matching character classes, whatever line-ending sequence is in use, and
|
1156 |
whatever setting of the PCRE_DOTALL and PCRE_MULTILINE options is used. A class
|
1157 |
such as [^a] always matches one of these characters.
|
1158 |
.P
|
1159 |
The minus (hyphen) character can be used to specify a range of characters in a
|
1160 |
character class. For example, [d-m] matches any letter between d and m,
|
1161 |
inclusive. If a minus character is required in a class, it must be escaped with
|
1162 |
a backslash or appear in a position where it cannot be interpreted as
|
1163 |
indicating a range, typically as the first or last character in the class.
|
1164 |
.P
|
1165 |
It is not possible to have the literal character "]" as the end character of a
|
1166 |
range. A pattern such as [W-]46] is interpreted as a class of two characters
|
1167 |
("W" and "-") followed by a literal string "46]", so it would match "W46]" or
|
1168 |
"-46]". However, if the "]" is escaped with a backslash it is interpreted as
|
1169 |
the end of range, so [W-\e]46] is interpreted as a class containing a range
|
1170 |
followed by two other characters. The octal or hexadecimal representation of
|
1171 |
"]" can also be used to end a range.
|
1172 |
.P
|
1173 |
Ranges operate in the collating sequence of character values. They can also be
|
1174 |
used for characters specified numerically, for example [\e000-\e037]. Ranges
|
1175 |
can include any characters that are valid for the current mode.
|
1176 |
.P
|
1177 |
If a range that includes letters is used when caseless matching is set, it
|
1178 |
matches the letters in either case. For example, [W-c] is equivalent to
|
1179 |
[][\e\e^_`wxyzabc], matched caselessly, and in a non-UTF mode, if character
|
1180 |
tables for a French locale are in use, [\exc8-\excb] matches accented E
|
1181 |
characters in both cases. In UTF modes, PCRE supports the concept of case for
|
1182 |
characters with values greater than 128 only when it is compiled with Unicode
|
1183 |
property support.
|
1184 |
.P
|
1185 |
The character escape sequences \ed, \eD, \eh, \eH, \ep, \eP, \es, \eS, \ev,
|
1186 |
\eV, \ew, and \eW may appear in a character class, and add the characters that
|
1187 |
they match to the class. For example, [\edABCDEF] matches any hexadecimal
|
1188 |
digit. In UTF modes, the PCRE_UCP option affects the meanings of \ed, \es, \ew
|
1189 |
and their upper case partners, just as it does when they appear outside a
|
1190 |
character class, as described in the section entitled
|
1191 |
.\" HTML <a href="#genericchartypes">
|
1192 |
.\" </a>
|
1193 |
"Generic character types"
|
1194 |
.\"
|
1195 |
above. The escape sequence \eb has a different meaning inside a character
|
1196 |
class; it matches the backspace character. The sequences \eB, \eN, \eR, and \eX
|
1197 |
are not special inside a character class. Like any other unrecognized escape
|
1198 |
sequences, they are treated as the literal characters "B", "N", "R", and "X" by
|
1199 |
default, but cause an error if the PCRE_EXTRA option is set.
|
1200 |
.P
|
1201 |
A circumflex can conveniently be used with the upper case character types to
|
1202 |
specify a more restricted set of characters than the matching lower case type.
|
1203 |
For example, the class [^\eW_] matches any letter or digit, but not underscore,
|
1204 |
whereas [\ew] includes underscore. A positive character class should be read as
|
1205 |
"something OR something OR ..." and a negative class as "NOT something AND NOT
|
1206 |
something AND NOT ...".
|
1207 |
.P
|
1208 |
The only metacharacters that are recognized in character classes are backslash,
|
1209 |
hyphen (only where it can be interpreted as specifying a range), circumflex
|
1210 |
(only at the start), opening square bracket (only when it can be interpreted as
|
1211 |
introducing a POSIX class name - see the next section), and the terminating
|
1212 |
closing square bracket. However, escaping other non-alphanumeric characters
|
1213 |
does no harm.
|
1214 |
.
|
1215 |
.
|
1216 |
.SH "POSIX CHARACTER CLASSES"
|
1217 |
.rs
|
1218 |
.sp
|
1219 |
Perl supports the POSIX notation for character classes. This uses names
|
1220 |
enclosed by [: and :] within the enclosing square brackets. PCRE also supports
|
1221 |
this notation. For example,
|
1222 |
.sp
|
1223 |
[01[:alpha:]%]
|
1224 |
.sp
|
1225 |
matches "0", "1", any alphabetic character, or "%". The supported class names
|
1226 |
are:
|
1227 |
.sp
|
1228 |
alnum letters and digits
|
1229 |
alpha letters
|
1230 |
ascii character codes 0 - 127
|
1231 |
blank space or tab only
|
1232 |
cntrl control characters
|
1233 |
digit decimal digits (same as \ed)
|
1234 |
graph printing characters, excluding space
|
1235 |
lower lower case letters
|
1236 |
print printing characters, including space
|
1237 |
punct printing characters, excluding letters and digits and space
|
1238 |
space white space (not quite the same as \es)
|
1239 |
upper upper case letters
|
1240 |
word "word" characters (same as \ew)
|
1241 |
xdigit hexadecimal digits
|
1242 |
.sp
|
1243 |
The "space" characters are HT (9), LF (10), VT (11), FF (12), CR (13), and
|
1244 |
space (32). Notice that this list includes the VT character (code 11). This
|
1245 |
makes "space" different to \es, which does not include VT (for Perl
|
1246 |
compatibility).
|
1247 |
.P
|
1248 |
The name "word" is a Perl extension, and "blank" is a GNU extension from Perl
|
1249 |
5.8. Another Perl extension is negation, which is indicated by a ^ character
|
1250 |
after the colon. For example,
|
1251 |
.sp
|
1252 |
[12[:^digit:]]
|
1253 |
.sp
|
1254 |
matches "1", "2", or any non-digit. PCRE (and Perl) also recognize the POSIX
|
1255 |
syntax [.ch.] and [=ch=] where "ch" is a "collating element", but these are not
|
1256 |
supported, and an error is given if they are encountered.
|
1257 |
.P
|
1258 |
By default, in UTF modes, characters with values greater than 128 do not match
|
1259 |
any of the POSIX character classes. However, if the PCRE_UCP option is passed
|
1260 |
to \fBpcre_compile()\fP, some of the classes are changed so that Unicode
|
1261 |
character properties are used. This is achieved by replacing the POSIX classes
|
1262 |
by other sequences, as follows:
|
1263 |
.sp
|
1264 |
[:alnum:] becomes \ep{Xan}
|
1265 |
[:alpha:] becomes \ep{L}
|
1266 |
[:blank:] becomes \eh
|
1267 |
[:digit:] becomes \ep{Nd}
|
1268 |
[:lower:] becomes \ep{Ll}
|
1269 |
[:space:] becomes \ep{Xps}
|
1270 |
[:upper:] becomes \ep{Lu}
|
1271 |
[:word:] becomes \ep{Xwd}
|
1272 |
.sp
|
1273 |
Negated versions, such as [:^alpha:] use \eP instead of \ep. The other POSIX
|
1274 |
classes are unchanged, and match only characters with code points less than
|
1275 |
128.
|
1276 |
.
|
1277 |
.
|
1278 |
.SH "VERTICAL BAR"
|
1279 |
.rs
|
1280 |
.sp
|
1281 |
Vertical bar characters are used to separate alternative patterns. For example,
|
1282 |
the pattern
|
1283 |
.sp
|
1284 |
gilbert|sullivan
|
1285 |
.sp
|
1286 |
matches either "gilbert" or "sullivan". Any number of alternatives may appear,
|
1287 |
and an empty alternative is permitted (matching the empty string). The matching
|
1288 |
process tries each alternative in turn, from left to right, and the first one
|
1289 |
that succeeds is used. If the alternatives are within a subpattern
|
1290 |
.\" HTML <a href="#subpattern">
|
1291 |
.\" </a>
|
1292 |
(defined below),
|
1293 |
.\"
|
1294 |
"succeeds" means matching the rest of the main pattern as well as the
|
1295 |
alternative in the subpattern.
|
1296 |
.
|
1297 |
.
|
1298 |
.SH "INTERNAL OPTION SETTING"
|
1299 |
.rs
|
1300 |
.sp
|
1301 |
The settings of the PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and
|
1302 |
PCRE_EXTENDED options (which are Perl-compatible) can be changed from within
|
1303 |
the pattern by a sequence of Perl option letters enclosed between "(?" and ")".
|
1304 |
The option letters are
|
1305 |
.sp
|
1306 |
i for PCRE_CASELESS
|
1307 |
m for PCRE_MULTILINE
|
1308 |
s for PCRE_DOTALL
|
1309 |
x for PCRE_EXTENDED
|
1310 |
.sp
|
1311 |
For example, (?im) sets caseless, multiline matching. It is also possible to
|
1312 |
unset these options by preceding the letter with a hyphen, and a combined
|
1313 |
setting and unsetting such as (?im-sx), which sets PCRE_CASELESS and
|
1314 |
PCRE_MULTILINE while unsetting PCRE_DOTALL and PCRE_EXTENDED, is also
|
1315 |
permitted. If a letter appears both before and after the hyphen, the option is
|
1316 |
unset.
|
1317 |
.P
|
1318 |
The PCRE-specific options PCRE_DUPNAMES, PCRE_UNGREEDY, and PCRE_EXTRA can be
|
1319 |
changed in the same way as the Perl-compatible options by using the characters
|
1320 |
J, U and X respectively.
|
1321 |
.P
|
1322 |
When one of these option changes occurs at top level (that is, not inside
|
1323 |
subpattern parentheses), the change applies to the remainder of the pattern
|
1324 |
that follows. If the change is placed right at the start of a pattern, PCRE
|
1325 |
extracts it into the global options (and it will therefore show up in data
|
1326 |
extracted by the \fBpcre_fullinfo()\fP function).
|
1327 |
.P
|
1328 |
An option change within a subpattern (see below for a description of
|
1329 |
subpatterns) affects only that part of the subpattern that follows it, so
|
1330 |
.sp
|
1331 |
(a(?i)b)c
|
1332 |
.sp
|
1333 |
matches abc and aBc and no other strings (assuming PCRE_CASELESS is not used).
|
1334 |
By this means, options can be made to have different settings in different
|
1335 |
parts of the pattern. Any changes made in one alternative do carry on
|
1336 |
into subsequent branches within the same subpattern. For example,
|
1337 |
.sp
|
1338 |
(a(?i)b|c)
|
1339 |
.sp
|
1340 |
matches "ab", "aB", "c", and "C", even though when matching "C" the first
|
1341 |
branch is abandoned before the option setting. This is because the effects of
|
1342 |
option settings happen at compile time. There would be some very weird
|
1343 |
behaviour otherwise.
|
1344 |
.P
|
1345 |
\fBNote:\fP There are other PCRE-specific options that can be set by the
|
1346 |
application when the compiling or matching functions are called. In some cases
|
1347 |
the pattern can contain special leading sequences such as (*CRLF) to override
|
1348 |
what the application has set or what has been defaulted. Details are given in
|
1349 |
the section entitled
|
1350 |
.\" HTML <a href="#newlineseq">
|
1351 |
.\" </a>
|
1352 |
"Newline sequences"
|
1353 |
.\"
|
1354 |
above. There are also the (*UTF8), (*UTF16),(*UTF32), and (*UCP) leading
|
1355 |
sequences that can be used to set UTF and Unicode property modes; they are
|
1356 |
equivalent to setting the PCRE_UTF8, PCRE_UTF16, PCRE_UTF32 and the PCRE_UCP
|
1357 |
options, respectively. The (*UTF) sequence is a generic version that can be
|
1358 |
used with any of the libraries.
|
1359 |
.
|
1360 |
.
|
1361 |
.\" HTML <a name="subpattern"></a>
|
1362 |
.SH SUBPATTERNS
|
1363 |
.rs
|
1364 |
.sp
|
1365 |
Subpatterns are delimited by parentheses (round brackets), which can be nested.
|
1366 |
Turning part of a pattern into a subpattern does two things:
|
1367 |
.sp
|
1368 |
1. It localizes a set of alternatives. For example, the pattern
|
1369 |
.sp
|
1370 |
cat(aract|erpillar|)
|
1371 |
.sp
|
1372 |
matches "cataract", "caterpillar", or "cat". Without the parentheses, it would
|
1373 |
match "cataract", "erpillar" or an empty string.
|
1374 |
.sp
|
1375 |
2. It sets up the subpattern as a capturing subpattern. This means that, when
|
1376 |
the whole pattern matches, that portion of the subject string that matched the
|
1377 |
subpattern is passed back to the caller via the \fIovector\fP argument of the
|
1378 |
matching function. (This applies only to the traditional matching functions;
|
1379 |
the DFA matching functions do not support capturing.)
|
1380 |
.P
|
1381 |
Opening parentheses are counted from left to right (starting from 1) to obtain
|
1382 |
numbers for the capturing subpatterns. For example, if the string "the red
|
1383 |
king" is matched against the pattern
|
1384 |
.sp
|
1385 |
the ((red|white) (king|queen))
|
1386 |
.sp
|
1387 |
the captured substrings are "red king", "red", and "king", and are numbered 1,
|
1388 |
2, and 3, respectively.
|
1389 |
.P
|
1390 |
The fact that plain parentheses fulfil two functions is not always helpful.
|
1391 |
There are often times when a grouping subpattern is required without a
|
1392 |
capturing requirement. If an opening parenthesis is followed by a question mark
|
1393 |
and a colon, the subpattern does not do any capturing, and is not counted when
|
1394 |
computing the number of any subsequent capturing subpatterns. For example, if
|
1395 |
the string "the white queen" is matched against the pattern
|
1396 |
.sp
|
1397 |
the ((?:red|white) (king|queen))
|
1398 |
.sp
|
1399 |
the captured substrings are "white queen" and "queen", and are numbered 1 and
|
1400 |
2. The maximum number of capturing subpatterns is 65535.
|
1401 |
.P
|
1402 |
As a convenient shorthand, if any option settings are required at the start of
|
1403 |
a non-capturing subpattern, the option letters may appear between the "?" and
|
1404 |
the ":". Thus the two patterns
|
1405 |
.sp
|
1406 |
(?i:saturday|sunday)
|
1407 |
(?:(?i)saturday|sunday)
|
1408 |
.sp
|
1409 |
match exactly the same set of strings. Because alternative branches are tried
|
1410 |
from left to right, and options are not reset until the end of the subpattern
|
1411 |
is reached, an option setting in one branch does affect subsequent branches, so
|
1412 |
the above patterns match "SUNDAY" as well as "Saturday".
|
1413 |
.
|
1414 |
.
|
1415 |
.\" HTML <a name="dupsubpatternnumber"></a>
|
1416 |
.SH "DUPLICATE SUBPATTERN NUMBERS"
|
1417 |
.rs
|
1418 |
.sp
|
1419 |
Perl 5.10 introduced a feature whereby each alternative in a subpattern uses
|
1420 |
the same numbers for its capturing parentheses. Such a subpattern starts with
|
1421 |
(?| and is itself a non-capturing subpattern. For example, consider this
|
1422 |
pattern:
|
1423 |
.sp
|
1424 |
(?|(Sat)ur|(Sun))day
|
1425 |
.sp
|
1426 |
Because the two alternatives are inside a (?| group, both sets of capturing
|
1427 |
parentheses are numbered one. Thus, when the pattern matches, you can look
|
1428 |
at captured substring number one, whichever alternative matched. This construct
|
1429 |
is useful when you want to capture part, but not all, of one of a number of
|
1430 |
alternatives. Inside a (?| group, parentheses are numbered as usual, but the
|
1431 |
number is reset at the start of each branch. The numbers of any capturing
|
1432 |
parentheses that follow the subpattern start after the highest number used in
|
1433 |
any branch. The following example is taken from the Perl documentation. The
|
1434 |
numbers underneath show in which buffer the captured content will be stored.
|
1435 |
.sp
|
1436 |
# before ---------------branch-reset----------- after
|
1437 |
/ ( a ) (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x
|
1438 |
# 1 2 2 3 2 3 4
|
1439 |
.sp
|
1440 |
A back reference to a numbered subpattern uses the most recent value that is
|
1441 |
set for that number by any subpattern. The following pattern matches "abcabc"
|
1442 |
or "defdef":
|
1443 |
.sp
|
1444 |
/(?|(abc)|(def))\e1/
|
1445 |
.sp
|
1446 |
In contrast, a subroutine call to a numbered subpattern always refers to the
|
1447 |
first one in the pattern with the given number. The following pattern matches
|
1448 |
"abcabc" or "defabc":
|
1449 |
.sp
|
1450 |
/(?|(abc)|(def))(?1)/
|
1451 |
.sp
|
1452 |
If a
|
1453 |
.\" HTML <a href="#conditions">
|
1454 |
.\" </a>
|
1455 |
condition test
|
1456 |
.\"
|
1457 |
for a subpattern's having matched refers to a non-unique number, the test is
|
1458 |
true if any of the subpatterns of that number have matched.
|
1459 |
.P
|
1460 |
An alternative approach to using this "branch reset" feature is to use
|
1461 |
duplicate named subpatterns, as described in the next section.
|
1462 |
.
|
1463 |
.
|
1464 |
.SH "NAMED SUBPATTERNS"
|
1465 |
.rs
|
1466 |
.sp
|
1467 |
Identifying capturing parentheses by number is simple, but it can be very hard
|
1468 |
to keep track of the numbers in complicated regular expressions. Furthermore,
|
1469 |
if an expression is modified, the numbers may change. To help with this
|
1470 |
difficulty, PCRE supports the naming of subpatterns. This feature was not
|
1471 |
added to Perl until release 5.10. Python had the feature earlier, and PCRE
|
1472 |
introduced it at release 4.0, using the Python syntax. PCRE now supports both
|
1473 |
the Perl and the Python syntax. Perl allows identically numbered subpatterns to
|
1474 |
have different names, but PCRE does not.
|
1475 |
.P
|
1476 |
In PCRE, a subpattern can be named in one of three ways: (?<name>...) or
|
1477 |
(?'name'...) as in Perl, or (?P<name>...) as in Python. References to capturing
|
1478 |
parentheses from other parts of the pattern, such as
|
1479 |
.\" HTML <a href="#backreferences">
|
1480 |
.\" </a>
|
1481 |
back references,
|
1482 |
.\"
|
1483 |
.\" HTML <a href="#recursion">
|
1484 |
.\" </a>
|
1485 |
recursion,
|
1486 |
.\"
|
1487 |
and
|
1488 |
.\" HTML <a href="#conditions">
|
1489 |
.\" </a>
|
1490 |
conditions,
|
1491 |
.\"
|
1492 |
can be made by name as well as by number.
|
1493 |
.P
|
1494 |
Names consist of up to 32 alphanumeric characters and underscores. Named
|
1495 |
capturing parentheses are still allocated numbers as well as names, exactly as
|
1496 |
if the names were not present. The PCRE API provides function calls for
|
1497 |
extracting the name-to-number translation table from a compiled pattern. There
|
1498 |
is also a convenience function for extracting a captured substring by name.
|
1499 |
.P
|
1500 |
By default, a name must be unique within a pattern, but it is possible to relax
|
1501 |
this constraint by setting the PCRE_DUPNAMES option at compile time. (Duplicate
|
1502 |
names are also always permitted for subpatterns with the same number, set up as
|
1503 |
described in the previous section.) Duplicate names can be useful for patterns
|
1504 |
where only one instance of the named parentheses can match. Suppose you want to
|
1505 |
match the name of a weekday, either as a 3-letter abbreviation or as the full
|
1506 |
name, and in both cases you want to extract the abbreviation. This pattern
|
1507 |
(ignoring the line breaks) does the job:
|
1508 |
.sp
|
1509 |
(?<DN>Mon|Fri|Sun)(?:day)?|
|
1510 |
(?<DN>Tue)(?:sday)?|
|
1511 |
(?<DN>Wed)(?:nesday)?|
|
1512 |
(?<DN>Thu)(?:rsday)?|
|
1513 |
(?<DN>Sat)(?:urday)?
|
1514 |
.sp
|
1515 |
There are five capturing substrings, but only one is ever set after a match.
|
1516 |
(An alternative way of solving this problem is to use a "branch reset"
|
1517 |
subpattern, as described in the previous section.)
|
1518 |
.P
|
1519 |
The convenience function for extracting the data by name returns the substring
|
1520 |
for the first (and in this example, the only) subpattern of that name that
|
1521 |
matched. This saves searching to find which numbered subpattern it was.
|
1522 |
.P
|
1523 |
If you make a back reference to a non-unique named subpattern from elsewhere in
|
1524 |
the pattern, the one that corresponds to the first occurrence of the name is
|
1525 |
used. In the absence of duplicate numbers (see the previous section) this is
|
1526 |
the one with the lowest number. If you use a named reference in a condition
|
1527 |
test (see the
|
1528 |
.\"
|
1529 |
.\" HTML <a href="#conditions">
|
1530 |
.\" </a>
|
1531 |
section about conditions
|
1532 |
.\"
|
1533 |
below), either to check whether a subpattern has matched, or to check for
|
1534 |
recursion, all subpatterns with the same name are tested. If the condition is
|
1535 |
true for any one of them, the overall condition is true. This is the same
|
1536 |
behaviour as testing by number. For further details of the interfaces for
|
1537 |
handling named subpatterns, see the
|
1538 |
.\" HREF
|
1539 |
\fBpcreapi\fP
|
1540 |
.\"
|
1541 |
documentation.
|
1542 |
.P
|
1543 |
\fBWarning:\fP You cannot use different names to distinguish between two
|
1544 |
subpatterns with the same number because PCRE uses only the numbers when
|
1545 |
matching. For this reason, an error is given at compile time if different names
|
1546 |
are given to subpatterns with the same number. However, you can give the same
|
1547 |
name to subpatterns with the same number, even when PCRE_DUPNAMES is not set.
|
1548 |
.
|
1549 |
.
|
1550 |
.SH REPETITION
|
1551 |
.rs
|
1552 |
.sp
|
1553 |
Repetition is specified by quantifiers, which can follow any of the following
|
1554 |
items:
|
1555 |
.sp
|
1556 |
a literal data character
|
1557 |
the dot metacharacter
|
1558 |
the \eC escape sequence
|
1559 |
the \eX escape sequence
|
1560 |
the \eR escape sequence
|
1561 |
an escape such as \ed or \epL that matches a single character
|
1562 |
a character class
|
1563 |
a back reference (see next section)
|
1564 |
a parenthesized subpattern (including assertions)
|
1565 |
a subroutine call to a subpattern (recursive or otherwise)
|
1566 |
.sp
|
1567 |
The general repetition quantifier specifies a minimum and maximum number of
|
1568 |
permitted matches, by giving the two numbers in curly brackets (braces),
|
1569 |
separated by a comma. The numbers must be less than 65536, and the first must
|
1570 |
be less than or equal to the second. For example:
|
1571 |
.sp
|
1572 |
z{2,4}
|
1573 |
.sp
|
1574 |
matches "zz", "zzz", or "zzzz". A closing brace on its own is not a special
|
1575 |
character. If the second number is omitted, but the comma is present, there is
|
1576 |
no upper limit; if the second number and the comma are both omitted, the
|
1577 |
quantifier specifies an exact number of required matches. Thus
|
1578 |
.sp
|
1579 |
[aeiou]{3,}
|
1580 |
.sp
|
1581 |
matches at least 3 successive vowels, but may match many more, while
|
1582 |
.sp
|
1583 |
\ed{8}
|
1584 |
.sp
|
1585 |
matches exactly 8 digits. An opening curly bracket that appears in a position
|
1586 |
where a quantifier is not allowed, or one that does not match the syntax of a
|
1587 |
quantifier, is taken as a literal character. For example, {,6} is not a
|
1588 |
quantifier, but a literal string of four characters.
|
1589 |
.P
|
1590 |
In UTF modes, quantifiers apply to characters rather than to individual data
|
1591 |
units. Thus, for example, \ex{100}{2} matches two characters, each of
|
1592 |
which is represented by a two-byte sequence in a UTF-8 string. Similarly,
|
1593 |
\eX{3} matches three Unicode extended grapheme clusters, each of which may be
|
1594 |
several data units long (and they may be of different lengths).
|
1595 |
.P
|
1596 |
The quantifier {0} is permitted, causing the expression to behave as if the
|
1597 |
previous item and the quantifier were not present. This may be useful for
|
1598 |
subpatterns that are referenced as
|
1599 |
.\" HTML <a href="#subpatternsassubroutines">
|
1600 |
.\" </a>
|
1601 |
subroutines
|
1602 |
.\"
|
1603 |
from elsewhere in the pattern (but see also the section entitled
|
1604 |
.\" HTML <a href="#subdefine">
|
1605 |
.\" </a>
|
1606 |
"Defining subpatterns for use by reference only"
|
1607 |
.\"
|
1608 |
below). Items other than subpatterns that have a {0} quantifier are omitted
|
1609 |
from the compiled pattern.
|
1610 |
.P
|
1611 |
For convenience, the three most common quantifiers have single-character
|
1612 |
abbreviations:
|
1613 |
.sp
|
1614 |
* is equivalent to {0,}
|
1615 |
+ is equivalent to {1,}
|
1616 |
? is equivalent to {0,1}
|
1617 |
.sp
|
1618 |
It is possible to construct infinite loops by following a subpattern that can
|
1619 |
match no characters with a quantifier that has no upper limit, for example:
|
1620 |
.sp
|
1621 |
(a?)*
|
1622 |
.sp
|
1623 |
Earlier versions of Perl and PCRE used to give an error at compile time for
|
1624 |
such patterns. However, because there are cases where this can be useful, such
|
1625 |
patterns are now accepted, but if any repetition of the subpattern does in fact
|
1626 |
match no characters, the loop is forcibly broken.
|
1627 |
.P
|
1628 |
By default, the quantifiers are "greedy", that is, they match as much as
|
1629 |
possible (up to the maximum number of permitted times), without causing the
|
1630 |
rest of the pattern to fail. The classic example of where this gives problems
|
1631 |
is in trying to match comments in C programs. These appear between /* and */
|
1632 |
and within the comment, individual * and / characters may appear. An attempt to
|
1633 |
match C comments by applying the pattern
|
1634 |
.sp
|
1635 |
/\e*.*\e*/
|
1636 |
.sp
|
1637 |
to the string
|
1638 |
.sp
|
1639 |
/* first comment */ not comment /* second comment */
|
1640 |
.sp
|
1641 |
fails, because it matches the entire string owing to the greediness of the .*
|
1642 |
item.
|
1643 |
.P
|
1644 |
However, if a quantifier is followed by a question mark, it ceases to be
|
1645 |
greedy, and instead matches the minimum number of times possible, so the
|
1646 |
pattern
|
1647 |
.sp
|
1648 |
/\e*.*?\e*/
|
1649 |
.sp
|
1650 |
does the right thing with the C comments. The meaning of the various
|
1651 |
quantifiers is not otherwise changed, just the preferred number of matches.
|
1652 |
Do not confuse this use of question mark with its use as a quantifier in its
|
1653 |
own right. Because it has two uses, it can sometimes appear doubled, as in
|
1654 |
.sp
|
1655 |
\ed??\ed
|
1656 |
.sp
|
1657 |
which matches one digit by preference, but can match two if that is the only
|
1658 |
way the rest of the pattern matches.
|
1659 |
.P
|
1660 |
If the PCRE_UNGREEDY option is set (an option that is not available in Perl),
|
1661 |
the quantifiers are not greedy by default, but individual ones can be made
|
1662 |
greedy by following them with a question mark. In other words, it inverts the
|
1663 |
default behaviour.
|
1664 |
.P
|
1665 |
When a parenthesized subpattern is quantified with a minimum repeat count that
|
1666 |
is greater than 1 or with a limited maximum, more memory is required for the
|
1667 |
compiled pattern, in proportion to the size of the minimum or maximum.
|
1668 |
.P
|
1669 |
If a pattern starts with .* or .{0,} and the PCRE_DOTALL option (equivalent
|
1670 |
to Perl's /s) is set, thus allowing the dot to match newlines, the pattern is
|
1671 |
implicitly anchored, because whatever follows will be tried against every
|
1672 |
character position in the subject string, so there is no point in retrying the
|
1673 |
overall match at any position after the first. PCRE normally treats such a
|
1674 |
pattern as though it were preceded by \eA.
|
1675 |
.P
|
1676 |
In cases where it is known that the subject string contains no newlines, it is
|
1677 |
worth setting PCRE_DOTALL in order to obtain this optimization, or
|
1678 |
alternatively using ^ to indicate anchoring explicitly.
|
1679 |
.P
|
1680 |
However, there are some cases where the optimization cannot be used. When .*
|
1681 |
is inside capturing parentheses that are the subject of a back reference
|
1682 |
elsewhere in the pattern, a match at the start may fail where a later one
|
1683 |
succeeds. Consider, for example:
|
1684 |
.sp
|
1685 |
(.*)abc\e1
|
1686 |
.sp
|
1687 |
If the subject is "xyz123abc123" the match point is the fourth character. For
|
1688 |
this reason, such a pattern is not implicitly anchored.
|
1689 |
.P
|
1690 |
Another case where implicit anchoring is not applied is when the leading .* is
|
1691 |
inside an atomic group. Once again, a match at the start may fail where a later
|
1692 |
one succeeds. Consider this pattern:
|
1693 |
.sp
|
1694 |
(?>.*?a)b
|
1695 |
.sp
|
1696 |
It matches "ab" in the subject "aab". The use of the backtracking control verbs
|
1697 |
(*PRUNE) and (*SKIP) also disable this optimization.
|
1698 |
.P
|
1699 |
When a capturing subpattern is repeated, the value captured is the substring
|
1700 |
that matched the final iteration. For example, after
|
1701 |
.sp
|
1702 |
(tweedle[dume]{3}\es*)+
|
1703 |
.sp
|
1704 |
has matched "tweedledum tweedledee" the value of the captured substring is
|
1705 |
"tweedledee". However, if there are nested capturing subpatterns, the
|
1706 |
corresponding captured values may have been set in previous iterations. For
|
1707 |
example, after
|
1708 |
.sp
|
1709 |
/(a|(b))+/
|
1710 |
.sp
|
1711 |
matches "aba" the value of the second captured substring is "b".
|
1712 |
.
|
1713 |
.
|
1714 |
.\" HTML <a name="atomicgroup"></a>
|
1715 |
.SH "ATOMIC GROUPING AND POSSESSIVE QUANTIFIERS"
|
1716 |
.rs
|
1717 |
.sp
|
1718 |
With both maximizing ("greedy") and minimizing ("ungreedy" or "lazy")
|
1719 |
repetition, failure of what follows normally causes the repeated item to be
|
1720 |
re-evaluated to see if a different number of repeats allows the rest of the
|
1721 |
pattern to match. Sometimes it is useful to prevent this, either to change the
|
1722 |
nature of the match, or to cause it fail earlier than it otherwise might, when
|
1723 |
the author of the pattern knows there is no point in carrying on.
|
1724 |
.P
|
1725 |
Consider, for example, the pattern \ed+foo when applied to the subject line
|
1726 |
.sp
|
1727 |
123456bar
|
1728 |
.sp
|
1729 |
After matching all 6 digits and then failing to match "foo", the normal
|
1730 |
action of the matcher is to try again with only 5 digits matching the \ed+
|
1731 |
item, and then with 4, and so on, before ultimately failing. "Atomic grouping"
|
1732 |
(a term taken from Jeffrey Friedl's book) provides the means for specifying
|
1733 |
that once a subpattern has matched, it is not to be re-evaluated in this way.
|
1734 |
.P
|
1735 |
If we use atomic grouping for the previous example, the matcher gives up
|
1736 |
immediately on failing to match "foo" the first time. The notation is a kind of
|
1737 |
special parenthesis, starting with (?> as in this example:
|
1738 |
.sp
|
1739 |
(?>\ed+)foo
|
1740 |
.sp
|
1741 |
This kind of parenthesis "locks up" the part of the pattern it contains once
|
1742 |
it has matched, and a failure further into the pattern is prevented from
|
1743 |
backtracking into it. Backtracking past it to previous items, however, works as
|
1744 |
normal.
|
1745 |
.P
|
1746 |
An alternative description is that a subpattern of this type matches the string
|
1747 |
of characters that an identical standalone pattern would match, if anchored at
|
1748 |
the current point in the subject string.
|
1749 |
.P
|
1750 |
Atomic grouping subpatterns are not capturing subpatterns. Simple cases such as
|
1751 |
the above example can be thought of as a maximizing repeat that must swallow
|
1752 |
everything it can. So, while both \ed+ and \ed+? are prepared to adjust the
|
1753 |
number of digits they match in order to make the rest of the pattern match,
|
1754 |
(?>\ed+) can only match an entire sequence of digits.
|
1755 |
.P
|
1756 |
Atomic groups in general can of course contain arbitrarily complicated
|
1757 |
subpatterns, and can be nested. However, when the subpattern for an atomic
|
1758 |
group is just a single repeated item, as in the example above, a simpler
|
1759 |
notation, called a "possessive quantifier" can be used. This consists of an
|
1760 |
additional + character following a quantifier. Using this notation, the
|
1761 |
previous example can be rewritten as
|
1762 |
.sp
|
1763 |
\ed++foo
|
1764 |
.sp
|
1765 |
Note that a possessive quantifier can be used with an entire group, for
|
1766 |
example:
|
1767 |
.sp
|
1768 |
(abc|xyz){2,3}+
|
1769 |
.sp
|
1770 |
Possessive quantifiers are always greedy; the setting of the PCRE_UNGREEDY
|
1771 |
option is ignored. They are a convenient notation for the simpler forms of
|
1772 |
atomic group. However, there is no difference in the meaning of a possessive
|
1773 |
quantifier and the equivalent atomic group, though there may be a performance
|
1774 |
difference; possessive quantifiers should be slightly faster.
|
1775 |
.P
|
1776 |
The possessive quantifier syntax is an extension to the Perl 5.8 syntax.
|
1777 |
Jeffrey Friedl originated the idea (and the name) in the first edition of his
|
1778 |
book. Mike McCloskey liked it, so implemented it when he built Sun's Java
|
1779 |
package, and PCRE copied it from there. It ultimately found its way into Perl
|
1780 |
at release 5.10.
|
1781 |
.P
|
1782 |
PCRE has an optimization that automatically "possessifies" certain simple
|
1783 |
pattern constructs. For example, the sequence A+B is treated as A++B because
|
1784 |
there is no point in backtracking into a sequence of A's when B must follow.
|
1785 |
.P
|
1786 |
When a pattern contains an unlimited repeat inside a subpattern that can itself
|
1787 |
be repeated an unlimited number of times, the use of an atomic group is the
|
1788 |
only way to avoid some failing matches taking a very long time indeed. The
|
1789 |
pattern
|
1790 |
.sp
|
1791 |
(\eD+|<\ed+>)*[!?]
|
1792 |
.sp
|
1793 |
matches an unlimited number of substrings that either consist of non-digits, or
|
1794 |
digits enclosed in <>, followed by either ! or ?. When it matches, it runs
|
1795 |
quickly. However, if it is applied to
|
1796 |
.sp
|
1797 |
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
1798 |
.sp
|
1799 |
it takes a long time before reporting failure. This is because the string can
|
1800 |
be divided between the internal \eD+ repeat and the external * repeat in a
|
1801 |
large number of ways, and all have to be tried. (The example uses [!?] rather
|
1802 |
than a single character at the end, because both PCRE and Perl have an
|
1803 |
optimization that allows for fast failure when a single character is used. They
|
1804 |
remember the last single character that is required for a match, and fail early
|
1805 |
if it is not present in the string.) If the pattern is changed so that it uses
|
1806 |
an atomic group, like this:
|
1807 |
.sp
|
1808 |
((?>\eD+)|<\ed+>)*[!?]
|
1809 |
.sp
|
1810 |
sequences of non-digits cannot be broken, and failure happens quickly.
|
1811 |
.
|
1812 |
.
|
1813 |
.\" HTML <a name="backreferences"></a>
|
1814 |
.SH "BACK REFERENCES"
|
1815 |
.rs
|
1816 |
.sp
|
1817 |
Outside a character class, a backslash followed by a digit greater than 0 (and
|
1818 |
possibly further digits) is a back reference to a capturing subpattern earlier
|
1819 |
(that is, to its left) in the pattern, provided there have been that many
|
1820 |
previous capturing left parentheses.
|
1821 |
.P
|
1822 |
However, if the decimal number following the backslash is less than 10, it is
|
1823 |
always taken as a back reference, and causes an error only if there are not
|
1824 |
that many capturing left parentheses in the entire pattern. In other words, the
|
1825 |
parentheses that are referenced need not be to the left of the reference for
|
1826 |
numbers less than 10. A "forward back reference" of this type can make sense
|
1827 |
when a repetition is involved and the subpattern to the right has participated
|
1828 |
in an earlier iteration.
|
1829 |
.P
|
1830 |
It is not possible to have a numerical "forward back reference" to a subpattern
|
1831 |
whose number is 10 or more using this syntax because a sequence such as \e50 is
|
1832 |
interpreted as a character defined in octal. See the subsection entitled
|
1833 |
"Non-printing characters"
|
1834 |
.\" HTML <a href="#digitsafterbackslash">
|
1835 |
.\" </a>
|
1836 |
above
|
1837 |
.\"
|
1838 |
for further details of the handling of digits following a backslash. There is
|
1839 |
no such problem when named parentheses are used. A back reference to any
|
1840 |
subpattern is possible using named parentheses (see below).
|
1841 |
.P
|
1842 |
Another way of avoiding the ambiguity inherent in the use of digits following a
|
1843 |
backslash is to use the \eg escape sequence. This escape must be followed by an
|
1844 |
unsigned number or a negative number, optionally enclosed in braces. These
|
1845 |
examples are all identical:
|
1846 |
.sp
|
1847 |
(ring), \e1
|
1848 |
(ring), \eg1
|
1849 |
(ring), \eg{1}
|
1850 |
.sp
|
1851 |
An unsigned number specifies an absolute reference without the ambiguity that
|
1852 |
is present in the older syntax. It is also useful when literal digits follow
|
1853 |
the reference. A negative number is a relative reference. Consider this
|
1854 |
example:
|
1855 |
.sp
|
1856 |
(abc(def)ghi)\eg{-1}
|
1857 |
.sp
|
1858 |
The sequence \eg{-1} is a reference to the most recently started capturing
|
1859 |
subpattern before \eg, that is, is it equivalent to \e2 in this example.
|
1860 |
Similarly, \eg{-2} would be equivalent to \e1. The use of relative references
|
1861 |
can be helpful in long patterns, and also in patterns that are created by
|
1862 |
joining together fragments that contain references within themselves.
|
1863 |
.P
|
1864 |
A back reference matches whatever actually matched the capturing subpattern in
|
1865 |
the current subject string, rather than anything matching the subpattern
|
1866 |
itself (see
|
1867 |
.\" HTML <a href="#subpatternsassubroutines">
|
1868 |
.\" </a>
|
1869 |
"Subpatterns as subroutines"
|
1870 |
.\"
|
1871 |
below for a way of doing that). So the pattern
|
1872 |
.sp
|
1873 |
(sens|respons)e and \e1ibility
|
1874 |
.sp
|
1875 |
matches "sense and sensibility" and "response and responsibility", but not
|
1876 |
"sense and responsibility". If caseful matching is in force at the time of the
|
1877 |
back reference, the case of letters is relevant. For example,
|
1878 |
.sp
|
1879 |
((?i)rah)\es+\e1
|
1880 |
.sp
|
1881 |
matches "rah rah" and "RAH RAH", but not "RAH rah", even though the original
|
1882 |
capturing subpattern is matched caselessly.
|
1883 |
.P
|
1884 |
There are several different ways of writing back references to named
|
1885 |
subpatterns. The .NET syntax \ek{name} and the Perl syntax \ek<name> or
|
1886 |
\ek'name' are supported, as is the Python syntax (?P=name). Perl 5.10's unified
|
1887 |
back reference syntax, in which \eg can be used for both numeric and named
|
1888 |
references, is also supported. We could rewrite the above example in any of
|
1889 |
the following ways:
|
1890 |
.sp
|
1891 |
(?<p1>(?i)rah)\es+\ek<p1>
|
1892 |
(?'p1'(?i)rah)\es+\ek{p1}
|
1893 |
(?P<p1>(?i)rah)\es+(?P=p1)
|
1894 |
(?<p1>(?i)rah)\es+\eg{p1}
|
1895 |
.sp
|
1896 |
A subpattern that is referenced by name may appear in the pattern before or
|
1897 |
after the reference.
|
1898 |
.P
|
1899 |
There may be more than one back reference to the same subpattern. If a
|
1900 |
subpattern has not actually been used in a particular match, any back
|
1901 |
references to it always fail by default. For example, the pattern
|
1902 |
.sp
|
1903 |
(a|(bc))\e2
|
1904 |
.sp
|
1905 |
always fails if it starts to match "a" rather than "bc". However, if the
|
1906 |
PCRE_JAVASCRIPT_COMPAT option is set at compile time, a back reference to an
|
1907 |
unset value matches an empty string.
|
1908 |
.P
|
1909 |
Because there may be many capturing parentheses in a pattern, all digits
|
1910 |
following a backslash are taken as part of a potential back reference number.
|
1911 |
If the pattern continues with a digit character, some delimiter must be used to
|
1912 |
terminate the back reference. If the PCRE_EXTENDED option is set, this can be
|
1913 |
white space. Otherwise, the \eg{ syntax or an empty comment (see
|
1914 |
.\" HTML <a href="#comments">
|
1915 |
.\" </a>
|
1916 |
"Comments"
|
1917 |
.\"
|
1918 |
below) can be used.
|
1919 |
.
|
1920 |
.SS "Recursive back references"
|
1921 |
.rs
|
1922 |
.sp
|
1923 |
A back reference that occurs inside the parentheses to which it refers fails
|
1924 |
when the subpattern is first used, so, for example, (a\e1) never matches.
|
1925 |
However, such references can be useful inside repeated subpatterns. For
|
1926 |
example, the pattern
|
1927 |
.sp
|
1928 |
(a|b\e1)+
|
1929 |
.sp
|
1930 |
matches any number of "a"s and also "aba", "ababbaa" etc. At each iteration of
|
1931 |
the subpattern, the back reference matches the character string corresponding
|
1932 |
to the previous iteration. In order for this to work, the pattern must be such
|
1933 |
that the first iteration does not need to match the back reference. This can be
|
1934 |
done using alternation, as in the example above, or by a quantifier with a
|
1935 |
minimum of zero.
|
1936 |
.P
|
1937 |
Back references of this type cause the group that they reference to be treated
|
1938 |
as an
|
1939 |
.\" HTML <a href="#atomicgroup">
|
1940 |
.\" </a>
|
1941 |
atomic group.
|
1942 |
.\"
|
1943 |
Once the whole group has been matched, a subsequent matching failure cannot
|
1944 |
cause backtracking into the middle of the group.
|
1945 |
.
|
1946 |
.
|
1947 |
.\" HTML <a name="bigassertions"></a>
|
1948 |
.SH ASSERTIONS
|
1949 |
.rs
|
1950 |
.sp
|
1951 |
An assertion is a test on the characters following or preceding the current
|
1952 |
matching point that does not actually consume any characters. The simple
|
1953 |
assertions coded as \eb, \eB, \eA, \eG, \eZ, \ez, ^ and $ are described
|
1954 |
.\" HTML <a href="#smallassertions">
|
1955 |
.\" </a>
|
1956 |
above.
|
1957 |
.\"
|
1958 |
.P
|
1959 |
More complicated assertions are coded as subpatterns. There are two kinds:
|
1960 |
those that look ahead of the current position in the subject string, and those
|
1961 |
that look behind it. An assertion subpattern is matched in the normal way,
|
1962 |
except that it does not cause the current matching position to be changed.
|
1963 |
.P
|
1964 |
Assertion subpatterns are not capturing subpatterns. If such an assertion
|
1965 |
contains capturing subpatterns within it, these are counted for the purposes of
|
1966 |
numbering the capturing subpatterns in the whole pattern. However, substring
|
1967 |
capturing is carried out only for positive assertions, because it does not make
|
1968 |
sense for negative assertions.
|
1969 |
.P
|
1970 |
For compatibility with Perl, assertion subpatterns may be repeated; though
|
1971 |
it makes no sense to assert the same thing several times, the side effect of
|
1972 |
capturing parentheses may occasionally be useful. In practice, there only three
|
1973 |
cases:
|
1974 |
.sp
|
1975 |
(1) If the quantifier is {0}, the assertion is never obeyed during matching.
|
1976 |
However, it may contain internal capturing parenthesized groups that are called
|
1977 |
from elsewhere via the
|
1978 |
.\" HTML <a href="#subpatternsassubroutines">
|
1979 |
.\" </a>
|
1980 |
subroutine mechanism.
|
1981 |
.\"
|
1982 |
.sp
|
1983 |
(2) If quantifier is {0,n} where n is greater than zero, it is treated as if it
|
1984 |
were {0,1}. At run time, the rest of the pattern match is tried with and
|
1985 |
without the assertion, the order depending on the greediness of the quantifier.
|
1986 |
.sp
|
1987 |
(3) If the minimum repetition is greater than zero, the quantifier is ignored.
|
1988 |
The assertion is obeyed just once when encountered during matching.
|
1989 |
.
|
1990 |
.
|
1991 |
.SS "Lookahead assertions"
|
1992 |
.rs
|
1993 |
.sp
|
1994 |
Lookahead assertions start with (?= for positive assertions and (?! for
|
1995 |
negative assertions. For example,
|
1996 |
.sp
|
1997 |
\ew+(?=;)
|
1998 |
.sp
|
1999 |
matches a word followed by a semicolon, but does not include the semicolon in
|
2000 |
the match, and
|
2001 |
.sp
|
2002 |
foo(?!bar)
|
2003 |
.sp
|
2004 |
matches any occurrence of "foo" that is not followed by "bar". Note that the
|
2005 |
apparently similar pattern
|
2006 |
.sp
|
2007 |
(?!foo)bar
|
2008 |
.sp
|
2009 |
does not find an occurrence of "bar" that is preceded by something other than
|
2010 |
"foo"; it finds any occurrence of "bar" whatsoever, because the assertion
|
2011 |
(?!foo) is always true when the next three characters are "bar". A
|
2012 |
lookbehind assertion is needed to achieve the other effect.
|
2013 |
.P
|
2014 |
If you want to force a matching failure at some point in a pattern, the most
|
2015 |
convenient way to do it is with (?!) because an empty string always matches, so
|
2016 |
an assertion that requires there not to be an empty string must always fail.
|
2017 |
The backtracking control verb (*FAIL) or (*F) is a synonym for (?!).
|
2018 |
.
|
2019 |
.
|
2020 |
.\" HTML <a name="lookbehind"></a>
|
2021 |
.SS "Lookbehind assertions"
|
2022 |
.rs
|
2023 |
.sp
|
2024 |
Lookbehind assertions start with (?<= for positive assertions and (?<! for
|
2025 |
negative assertions. For example,
|
2026 |
.sp
|
2027 |
(?<!foo)bar
|
2028 |
.sp
|
2029 |
does find an occurrence of "bar" that is not preceded by "foo". The contents of
|
2030 |
a lookbehind assertion are restricted such that all the strings it matches must
|
2031 |
have a fixed length. However, if there are several top-level alternatives, they
|
2032 |
do not all have to have the same fixed length. Thus
|
2033 |
.sp
|
2034 |
(?<=bullock|donkey)
|
2035 |
.sp
|
2036 |
is permitted, but
|
2037 |
.sp
|
2038 |
(?<!dogs?|cats?)
|
2039 |
.sp
|
2040 |
causes an error at compile time. Branches that match different length strings
|
2041 |
are permitted only at the top level of a lookbehind assertion. This is an
|
2042 |
extension compared with Perl, which requires all branches to match the same
|
2043 |
length of string. An assertion such as
|
2044 |
.sp
|
2045 |
(?<=ab(c|de))
|
2046 |
.sp
|
2047 |
is not permitted, because its single top-level branch can match two different
|
2048 |
lengths, but it is acceptable to PCRE if rewritten to use two top-level
|
2049 |
branches:
|
2050 |
.sp
|
2051 |
(?<=abc|abde)
|
2052 |
.sp
|
2053 |
In some cases, the escape sequence \eK
|
2054 |
.\" HTML <a href="#resetmatchstart">
|
2055 |
.\" </a>
|
2056 |
(see above)
|
2057 |
.\"
|
2058 |
can be used instead of a lookbehind assertion to get round the fixed-length
|
2059 |
restriction.
|
2060 |
.P
|
2061 |
The implementation of lookbehind assertions is, for each alternative, to
|
2062 |
temporarily move the current position back by the fixed length and then try to
|
2063 |
match. If there are insufficient characters before the current position, the
|
2064 |
assertion fails.
|
2065 |
.P
|
2066 |
In a UTF mode, PCRE does not allow the \eC escape (which matches a single data
|
2067 |
unit even in a UTF mode) to appear in lookbehind assertions, because it makes
|
2068 |
it impossible to calculate the length of the lookbehind. The \eX and \eR
|
2069 |
escapes, which can match different numbers of data units, are also not
|
2070 |
permitted.
|
2071 |
.P
|
2072 |
.\" HTML <a href="#subpatternsassubroutines">
|
2073 |
.\" </a>
|
2074 |
"Subroutine"
|
2075 |
.\"
|
2076 |
calls (see below) such as (?2) or (?&X) are permitted in lookbehinds, as long
|
2077 |
as the subpattern matches a fixed-length string.
|
2078 |
.\" HTML <a href="#recursion">
|
2079 |
.\" </a>
|
2080 |
Recursion,
|
2081 |
.\"
|
2082 |
however, is not supported.
|
2083 |
.P
|
2084 |
Possessive quantifiers can be used in conjunction with lookbehind assertions to
|
2085 |
specify efficient matching of fixed-length strings at the end of subject
|
2086 |
strings. Consider a simple pattern such as
|
2087 |
.sp
|
2088 |
abcd$
|
2089 |
.sp
|
2090 |
when applied to a long string that does not match. Because matching proceeds
|
2091 |
from left to right, PCRE will look for each "a" in the subject and then see if
|
2092 |
what follows matches the rest of the pattern. If the pattern is specified as
|
2093 |
.sp
|
2094 |
^.*abcd$
|
2095 |
.sp
|
2096 |
the initial .* matches the entire string at first, but when this fails (because
|
2097 |
there is no following "a"), it backtracks to match all but the last character,
|
2098 |
then all but the last two characters, and so on. Once again the search for "a"
|
2099 |
covers the entire string, from right to left, so we are no better off. However,
|
2100 |
if the pattern is written as
|
2101 |
.sp
|
2102 |
^.*+(?<=abcd)
|
2103 |
.sp
|
2104 |
there can be no backtracking for the .*+ item; it can match only the entire
|
2105 |
string. The subsequent lookbehind assertion does a single test on the last four
|
2106 |
characters. If it fails, the match fails immediately. For long strings, this
|
2107 |
approach makes a significant difference to the processing time.
|
2108 |
.
|
2109 |
.
|
2110 |
.SS "Using multiple assertions"
|
2111 |
.rs
|
2112 |
.sp
|
2113 |
Several assertions (of any sort) may occur in succession. For example,
|
2114 |
.sp
|
2115 |
(?<=\ed{3})(?<!999)foo
|
2116 |
.sp
|
2117 |
matches "foo" preceded by three digits that are not "999". Notice that each of
|
2118 |
the assertions is applied independently at the same point in the subject
|
2119 |
string. First there is a check that the previous three characters are all
|
2120 |
digits, and then there is a check that the same three characters are not "999".
|
2121 |
This pattern does \fInot\fP match "foo" preceded by six characters, the first
|
2122 |
of which are digits and the last three of which are not "999". For example, it
|
2123 |
doesn't match "123abcfoo". A pattern to do that is
|
2124 |
.sp
|
2125 |
(?<=\ed{3}...)(?<!999)foo
|
2126 |
.sp
|
2127 |
This time the first assertion looks at the preceding six characters, checking
|
2128 |
that the first three are digits, and then the second assertion checks that the
|
2129 |
preceding three characters are not "999".
|
2130 |
.P
|
2131 |
Assertions can be nested in any combination. For example,
|
2132 |
.sp
|
2133 |
(?<=(?<!foo)bar)baz
|
2134 |
.sp
|
2135 |
matches an occurrence of "baz" that is preceded by "bar" which in turn is not
|
2136 |
preceded by "foo", while
|
2137 |
.sp
|
2138 |
(?<=\ed{3}(?!999)...)foo
|
2139 |
.sp
|
2140 |
is another pattern that matches "foo" preceded by three digits and any three
|
2141 |
characters that are not "999".
|
2142 |
.
|
2143 |
.
|
2144 |
.\" HTML <a name="conditions"></a>
|
2145 |
.SH "CONDITIONAL SUBPATTERNS"
|
2146 |
.rs
|
2147 |
.sp
|
2148 |
It is possible to cause the matching process to obey a subpattern
|
2149 |
conditionally or to choose between two alternative subpatterns, depending on
|
2150 |
the result of an assertion, or whether a specific capturing subpattern has
|
2151 |
already been matched. The two possible forms of conditional subpattern are:
|
2152 |
.sp
|
2153 |
(?(condition)yes-pattern)
|
2154 |
(?(condition)yes-pattern|no-pattern)
|
2155 |
.sp
|
2156 |
If the condition is satisfied, the yes-pattern is used; otherwise the
|
2157 |
no-pattern (if present) is used. If there are more than two alternatives in the
|
2158 |
subpattern, a compile-time error occurs. Each of the two alternatives may
|
2159 |
itself contain nested subpatterns of any form, including conditional
|
2160 |
subpatterns; the restriction to two alternatives applies only at the level of
|
2161 |
the condition. This pattern fragment is an example where the alternatives are
|
2162 |
complex:
|
2163 |
.sp
|
2164 |
(?(1) (A|B|C) | (D | (?(2)E|F) | E) )
|
2165 |
.sp
|
2166 |
.P
|
2167 |
There are four kinds of condition: references to subpatterns, references to
|
2168 |
recursion, a pseudo-condition called DEFINE, and assertions.
|
2169 |
.
|
2170 |
.SS "Checking for a used subpattern by number"
|
2171 |
.rs
|
2172 |
.sp
|
2173 |
If the text between the parentheses consists of a sequence of digits, the
|
2174 |
condition is true if a capturing subpattern of that number has previously
|
2175 |
matched. If there is more than one capturing subpattern with the same number
|
2176 |
(see the earlier
|
2177 |
.\"
|
2178 |
.\" HTML <a href="#recursion">
|
2179 |
.\" </a>
|
2180 |
section about duplicate subpattern numbers),
|
2181 |
.\"
|
2182 |
the condition is true if any of them have matched. An alternative notation is
|
2183 |
to precede the digits with a plus or minus sign. In this case, the subpattern
|
2184 |
number is relative rather than absolute. The most recently opened parentheses
|
2185 |
can be referenced by (?(-1), the next most recent by (?(-2), and so on. Inside
|
2186 |
loops it can also make sense to refer to subsequent groups. The next
|
2187 |
parentheses to be opened can be referenced as (?(+1), and so on. (The value
|
2188 |
zero in any of these forms is not used; it provokes a compile-time error.)
|
2189 |
.P
|
2190 |
Consider the following pattern, which contains non-significant white space to
|
2191 |
make it more readable (assume the PCRE_EXTENDED option) and to divide it into
|
2192 |
three parts for ease of discussion:
|
2193 |
.sp
|
2194 |
( \e( )? [^()]+ (?(1) \e) )
|
2195 |
.sp
|
2196 |
The first part matches an optional opening parenthesis, and if that
|
2197 |
character is present, sets it as the first captured substring. The second part
|
2198 |
matches one or more characters that are not parentheses. The third part is a
|
2199 |
conditional subpattern that tests whether or not the first set of parentheses
|
2200 |
matched. If they did, that is, if subject started with an opening parenthesis,
|
2201 |
the condition is true, and so the yes-pattern is executed and a closing
|
2202 |
parenthesis is required. Otherwise, since no-pattern is not present, the
|
2203 |
subpattern matches nothing. In other words, this pattern matches a sequence of
|
2204 |
non-parentheses, optionally enclosed in parentheses.
|
2205 |
.P
|
2206 |
If you were embedding this pattern in a larger one, you could use a relative
|
2207 |
reference:
|
2208 |
.sp
|
2209 |
...other stuff... ( \e( )? [^()]+ (?(-1) \e) ) ...
|
2210 |
.sp
|
2211 |
This makes the fragment independent of the parentheses in the larger pattern.
|
2212 |
.
|
2213 |
.SS "Checking for a used subpattern by name"
|
2214 |
.rs
|
2215 |
.sp
|
2216 |
Perl uses the syntax (?(<name>)...) or (?('name')...) to test for a used
|
2217 |
subpattern by name. For compatibility with earlier versions of PCRE, which had
|
2218 |
this facility before Perl, the syntax (?(name)...) is also recognized. However,
|
2219 |
there is a possible ambiguity with this syntax, because subpattern names may
|
2220 |
consist entirely of digits. PCRE looks first for a named subpattern; if it
|
2221 |
cannot find one and the name consists entirely of digits, PCRE looks for a
|
2222 |
subpattern of that number, which must be greater than zero. Using subpattern
|
2223 |
names that consist entirely of digits is not recommended.
|
2224 |
.P
|
2225 |
Rewriting the above example to use a named subpattern gives this:
|
2226 |
.sp
|
2227 |
(?<OPEN> \e( )? [^()]+ (?(<OPEN>) \e) )
|
2228 |
.sp
|
2229 |
If the name used in a condition of this kind is a duplicate, the test is
|
2230 |
applied to all subpatterns of the same name, and is true if any one of them has
|
2231 |
matched.
|
2232 |
.
|
2233 |
.SS "Checking for pattern recursion"
|
2234 |
.rs
|
2235 |
.sp
|
2236 |
If the condition is the string (R), and there is no subpattern with the name R,
|
2237 |
the condition is true if a recursive call to the whole pattern or any
|
2238 |
subpattern has been made. If digits or a name preceded by ampersand follow the
|
2239 |
letter R, for example:
|
2240 |
.sp
|
2241 |
(?(R3)...) or (?(R&name)...)
|
2242 |
.sp
|
2243 |
the condition is true if the most recent recursion is into a subpattern whose
|
2244 |
number or name is given. This condition does not check the entire recursion
|
2245 |
stack. If the name used in a condition of this kind is a duplicate, the test is
|
2246 |
applied to all subpatterns of the same name, and is true if any one of them is
|
2247 |
the most recent recursion.
|
2248 |
.P
|
2249 |
At "top level", all these recursion test conditions are false.
|
2250 |
.\" HTML <a href="#recursion">
|
2251 |
.\" </a>
|
2252 |
The syntax for recursive patterns
|
2253 |
.\"
|
2254 |
is described below.
|
2255 |
.
|
2256 |
.\" HTML <a name="subdefine"></a>
|
2257 |
.SS "Defining subpatterns for use by reference only"
|
2258 |
.rs
|
2259 |
.sp
|
2260 |
If the condition is the string (DEFINE), and there is no subpattern with the
|
2261 |
name DEFINE, the condition is always false. In this case, there may be only one
|
2262 |
alternative in the subpattern. It is always skipped if control reaches this
|
2263 |
point in the pattern; the idea of DEFINE is that it can be used to define
|
2264 |
subroutines that can be referenced from elsewhere. (The use of
|
2265 |
.\" HTML <a href="#subpatternsassubroutines">
|
2266 |
.\" </a>
|
2267 |
subroutines
|
2268 |
.\"
|
2269 |
is described below.) For example, a pattern to match an IPv4 address such as
|
2270 |
"192.168.23.245" could be written like this (ignore white space and line
|
2271 |
breaks):
|
2272 |
.sp
|
2273 |
(?(DEFINE) (?<byte> 2[0-4]\ed | 25[0-5] | 1\ed\ed | [1-9]?\ed) )
|
2274 |
\eb (?&byte) (\e.(?&byte)){3} \eb
|
2275 |
.sp
|
2276 |
The first part of the pattern is a DEFINE group inside which a another group
|
2277 |
named "byte" is defined. This matches an individual component of an IPv4
|
2278 |
address (a number less than 256). When matching takes place, this part of the
|
2279 |
pattern is skipped because DEFINE acts like a false condition. The rest of the
|
2280 |
pattern uses references to the named group to match the four dot-separated
|
2281 |
components of an IPv4 address, insisting on a word boundary at each end.
|
2282 |
.
|
2283 |
.SS "Assertion conditions"
|
2284 |
.rs
|
2285 |
.sp
|
2286 |
If the condition is not in any of the above formats, it must be an assertion.
|
2287 |
This may be a positive or negative lookahead or lookbehind assertion. Consider
|
2288 |
this pattern, again containing non-significant white space, and with the two
|
2289 |
alternatives on the second line:
|
2290 |
.sp
|
2291 |
(?(?=[^a-z]*[a-z])
|
2292 |
\ed{2}-[a-z]{3}-\ed{2} | \ed{2}-\ed{2}-\ed{2} )
|
2293 |
.sp
|
2294 |
The condition is a positive lookahead assertion that matches an optional
|
2295 |
sequence of non-letters followed by a letter. In other words, it tests for the
|
2296 |
presence of at least one letter in the subject. If a letter is found, the
|
2297 |
subject is matched against the first alternative; otherwise it is matched
|
2298 |
against the second. This pattern matches strings in one of the two forms
|
2299 |
dd-aaa-dd or dd-dd-dd, where aaa are letters and dd are digits.
|
2300 |
.
|
2301 |
.
|
2302 |
.\" HTML <a name="comments"></a>
|
2303 |
.SH COMMENTS
|
2304 |
.rs
|
2305 |
.sp
|
2306 |
There are two ways of including comments in patterns that are processed by
|
2307 |
PCRE. In both cases, the start of the comment must not be in a character class,
|
2308 |
nor in the middle of any other sequence of related characters such as (?: or a
|
2309 |
subpattern name or number. The characters that make up a comment play no part
|
2310 |
in the pattern matching.
|
2311 |
.P
|
2312 |
The sequence (?# marks the start of a comment that continues up to the next
|
2313 |
closing parenthesis. Nested parentheses are not permitted. If the PCRE_EXTENDED
|
2314 |
option is set, an unescaped # character also introduces a comment, which in
|
2315 |
this case continues to immediately after the next newline character or
|
2316 |
character sequence in the pattern. Which characters are interpreted as newlines
|
2317 |
is controlled by the options passed to a compiling function or by a special
|
2318 |
sequence at the start of the pattern, as described in the section entitled
|
2319 |
.\" HTML <a href="#newlines">
|
2320 |
.\" </a>
|
2321 |
"Newline conventions"
|
2322 |
.\"
|
2323 |
above. Note that the end of this type of comment is a literal newline sequence
|
2324 |
in the pattern; escape sequences that happen to represent a newline do not
|
2325 |
count. For example, consider this pattern when PCRE_EXTENDED is set, and the
|
2326 |
default newline convention is in force:
|
2327 |
.sp
|
2328 |
abc #comment \en still comment
|
2329 |
.sp
|
2330 |
On encountering the # character, \fBpcre_compile()\fP skips along, looking for
|
2331 |
a newline in the pattern. The sequence \en is still literal at this stage, so
|
2332 |
it does not terminate the comment. Only an actual character with the code value
|
2333 |
0x0a (the default newline) does so.
|
2334 |
.
|
2335 |
.
|
2336 |
.\" HTML <a name="recursion"></a>
|
2337 |
.SH "RECURSIVE PATTERNS"
|
2338 |
.rs
|
2339 |
.sp
|
2340 |
Consider the problem of matching a string in parentheses, allowing for
|
2341 |
unlimited nested parentheses. Without the use of recursion, the best that can
|
2342 |
be done is to use a pattern that matches up to some fixed depth of nesting. It
|
2343 |
is not possible to handle an arbitrary nesting depth.
|
2344 |
.P
|
2345 |
For some time, Perl has provided a facility that allows regular expressions to
|
2346 |
recurse (amongst other things). It does this by interpolating Perl code in the
|
2347 |
expression at run time, and the code can refer to the expression itself. A Perl
|
2348 |
pattern using code interpolation to solve the parentheses problem can be
|
2349 |
created like this:
|
2350 |
.sp
|
2351 |
$re = qr{\e( (?: (?>[^()]+) | (?p{$re}) )* \e)}x;
|
2352 |
.sp
|
2353 |
The (?p{...}) item interpolates Perl code at run time, and in this case refers
|
2354 |
recursively to the pattern in which it appears.
|
2355 |
.P
|
2356 |
Obviously, PCRE cannot support the interpolation of Perl code. Instead, it
|
2357 |
supports special syntax for recursion of the entire pattern, and also for
|
2358 |
individual subpattern recursion. After its introduction in PCRE and Python,
|
2359 |
this kind of recursion was subsequently introduced into Perl at release 5.10.
|
2360 |
.P
|
2361 |
A special item that consists of (? followed by a number greater than zero and a
|
2362 |
closing parenthesis is a recursive subroutine call of the subpattern of the
|
2363 |
given number, provided that it occurs inside that subpattern. (If not, it is a
|
2364 |
.\" HTML <a href="#subpatternsassubroutines">
|
2365 |
.\" </a>
|
2366 |
non-recursive subroutine
|
2367 |
.\"
|
2368 |
call, which is described in the next section.) The special item (?R) or (?0) is
|
2369 |
a recursive call of the entire regular expression.
|
2370 |
.P
|
2371 |
This PCRE pattern solves the nested parentheses problem (assume the
|
2372 |
PCRE_EXTENDED option is set so that white space is ignored):
|
2373 |
.sp
|
2374 |
\e( ( [^()]++ | (?R) )* \e)
|
2375 |
.sp
|
2376 |
First it matches an opening parenthesis. Then it matches any number of
|
2377 |
substrings which can either be a sequence of non-parentheses, or a recursive
|
2378 |
match of the pattern itself (that is, a correctly parenthesized substring).
|
2379 |
Finally there is a closing parenthesis. Note the use of a possessive quantifier
|
2380 |
to avoid backtracking into sequences of non-parentheses.
|
2381 |
.P
|
2382 |
If this were part of a larger pattern, you would not want to recurse the entire
|
2383 |
pattern, so instead you could use this:
|
2384 |
.sp
|
2385 |
( \e( ( [^()]++ | (?1) )* \e) )
|
2386 |
.sp
|
2387 |
We have put the pattern into parentheses, and caused the recursion to refer to
|
2388 |
them instead of the whole pattern.
|
2389 |
.P
|
2390 |
In a larger pattern, keeping track of parenthesis numbers can be tricky. This
|
2391 |
is made easier by the use of relative references. Instead of (?1) in the
|
2392 |
pattern above you can write (?-2) to refer to the second most recently opened
|
2393 |
parentheses preceding the recursion. In other words, a negative number counts
|
2394 |
capturing parentheses leftwards from the point at which it is encountered.
|
2395 |
.P
|
2396 |
It is also possible to refer to subsequently opened parentheses, by writing
|
2397 |
references such as (?+2). However, these cannot be recursive because the
|
2398 |
reference is not inside the parentheses that are referenced. They are always
|
2399 |
.\" HTML <a href="#subpatternsassubroutines">
|
2400 |
.\" </a>
|
2401 |
non-recursive subroutine
|
2402 |
.\"
|
2403 |
calls, as described in the next section.
|
2404 |
.P
|
2405 |
An alternative approach is to use named parentheses instead. The Perl syntax
|
2406 |
for this is (?&name); PCRE's earlier syntax (?P>name) is also supported. We
|
2407 |
could rewrite the above example as follows:
|
2408 |
.sp
|
2409 |
(?<pn> \e( ( [^()]++ | (?&pn) )* \e) )
|
2410 |
.sp
|
2411 |
If there is more than one subpattern with the same name, the earliest one is
|
2412 |
used.
|
2413 |
.P
|
2414 |
This particular example pattern that we have been looking at contains nested
|
2415 |
unlimited repeats, and so the use of a possessive quantifier for matching
|
2416 |
strings of non-parentheses is important when applying the pattern to strings
|
2417 |
that do not match. For example, when this pattern is applied to
|
2418 |
.sp
|
2419 |
(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa()
|
2420 |
.sp
|
2421 |
it yields "no match" quickly. However, if a possessive quantifier is not used,
|
2422 |
the match runs for a very long time indeed because there are so many different
|
2423 |
ways the + and * repeats can carve up the subject, and all have to be tested
|
2424 |
before failure can be reported.
|
2425 |
.P
|
2426 |
At the end of a match, the values of capturing parentheses are those from
|
2427 |
the outermost level. If you want to obtain intermediate values, a callout
|
2428 |
function can be used (see below and the
|
2429 |
.\" HREF
|
2430 |
\fBpcrecallout\fP
|
2431 |
.\"
|
2432 |
documentation). If the pattern above is matched against
|
2433 |
.sp
|
2434 |
(ab(cd)ef)
|
2435 |
.sp
|
2436 |
the value for the inner capturing parentheses (numbered 2) is "ef", which is
|
2437 |
the last value taken on at the top level. If a capturing subpattern is not
|
2438 |
matched at the top level, its final captured value is unset, even if it was
|
2439 |
(temporarily) set at a deeper level during the matching process.
|
2440 |
.P
|
2441 |
If there are more than 15 capturing parentheses in a pattern, PCRE has to
|
2442 |
obtain extra memory to store data during a recursion, which it does by using
|
2443 |
\fBpcre_malloc\fP, freeing it via \fBpcre_free\fP afterwards. If no memory can
|
2444 |
be obtained, the match fails with the PCRE_ERROR_NOMEMORY error.
|
2445 |
.P
|
2446 |
Do not confuse the (?R) item with the condition (R), which tests for recursion.
|
2447 |
Consider this pattern, which matches text in angle brackets, allowing for
|
2448 |
arbitrary nesting. Only digits are allowed in nested brackets (that is, when
|
2449 |
recursing), whereas any characters are permitted at the outer level.
|
2450 |
.sp
|
2451 |
< (?: (?(R) \ed++ | [^<>]*+) | (?R)) * >
|
2452 |
.sp
|
2453 |
In this pattern, (?(R) is the start of a conditional subpattern, with two
|
2454 |
different alternatives for the recursive and non-recursive cases. The (?R) item
|
2455 |
is the actual recursive call.
|
2456 |
.
|
2457 |
.
|
2458 |
.\" HTML <a name="recursiondifference"></a>
|
2459 |
.SS "Differences in recursion processing between PCRE and Perl"
|
2460 |
.rs
|
2461 |
.sp
|
2462 |
Recursion processing in PCRE differs from Perl in two important ways. In PCRE
|
2463 |
(like Python, but unlike Perl), a recursive subpattern call is always treated
|
2464 |
as an atomic group. That is, once it has matched some of the subject string, it
|
2465 |
is never re-entered, even if it contains untried alternatives and there is a
|
2466 |
subsequent matching failure. This can be illustrated by the following pattern,
|
2467 |
which purports to match a palindromic string that contains an odd number of
|
2468 |
characters (for example, "a", "aba", "abcba", "abcdcba"):
|
2469 |
.sp
|
2470 |
^(.|(.)(?1)\e2)$
|
2471 |
.sp
|
2472 |
The idea is that it either matches a single character, or two identical
|
2473 |
characters surrounding a sub-palindrome. In Perl, this pattern works; in PCRE
|
2474 |
it does not if the pattern is longer than three characters. Consider the
|
2475 |
subject string "abcba":
|
2476 |
.P
|
2477 |
At the top level, the first character is matched, but as it is not at the end
|
2478 |
of the string, the first alternative fails; the second alternative is taken
|
2479 |
and the recursion kicks in. The recursive call to subpattern 1 successfully
|
2480 |
matches the next character ("b"). (Note that the beginning and end of line
|
2481 |
tests are not part of the recursion).
|
2482 |
.P
|
2483 |
Back at the top level, the next character ("c") is compared with what
|
2484 |
subpattern 2 matched, which was "a". This fails. Because the recursion is
|
2485 |
treated as an atomic group, there are now no backtracking points, and so the
|
2486 |
entire match fails. (Perl is able, at this point, to re-enter the recursion and
|
2487 |
try the second alternative.) However, if the pattern is written with the
|
2488 |
alternatives in the other order, things are different:
|
2489 |
.sp
|
2490 |
^((.)(?1)\e2|.)$
|
2491 |
.sp
|
2492 |
This time, the recursing alternative is tried first, and continues to recurse
|
2493 |
until it runs out of characters, at which point the recursion fails. But this
|
2494 |
time we do have another alternative to try at the higher level. That is the big
|
2495 |
difference: in the previous case the remaining alternative is at a deeper
|
2496 |
recursion level, which PCRE cannot use.
|
2497 |
.P
|
2498 |
To change the pattern so that it matches all palindromic strings, not just
|
2499 |
those with an odd number of characters, it is tempting to change the pattern to
|
2500 |
this:
|
2501 |
.sp
|
2502 |
^((.)(?1)\e2|.?)$
|
2503 |
.sp
|
2504 |
Again, this works in Perl, but not in PCRE, and for the same reason. When a
|
2505 |
deeper recursion has matched a single character, it cannot be entered again in
|
2506 |
order to match an empty string. The solution is to separate the two cases, and
|
2507 |
write out the odd and even cases as alternatives at the higher level:
|
2508 |
.sp
|
2509 |
^(?:((.)(?1)\e2|)|((.)(?3)\e4|.))
|
2510 |
.sp
|
2511 |
If you want to match typical palindromic phrases, the pattern has to ignore all
|
2512 |
non-word characters, which can be done like this:
|
2513 |
.sp
|
2514 |
^\eW*+(?:((.)\eW*+(?1)\eW*+\e2|)|((.)\eW*+(?3)\eW*+\e4|\eW*+.\eW*+))\eW*+$
|
2515 |
.sp
|
2516 |
If run with the PCRE_CASELESS option, this pattern matches phrases such as "A
|
2517 |
man, a plan, a canal: Panama!" and it works well in both PCRE and Perl. Note
|
2518 |
the use of the possessive quantifier *+ to avoid backtracking into sequences of
|
2519 |
non-word characters. Without this, PCRE takes a great deal longer (ten times or
|
2520 |
more) to match typical phrases, and Perl takes so long that you think it has
|
2521 |
gone into a loop.
|
2522 |
.P
|
2523 |
\fBWARNING\fP: The palindrome-matching patterns above work only if the subject
|
2524 |
string does not start with a palindrome that is shorter than the entire string.
|
2525 |
For example, although "abcba" is correctly matched, if the subject is "ababa",
|
2526 |
PCRE finds the palindrome "aba" at the start, then fails at top level because
|
2527 |
the end of the string does not follow. Once again, it cannot jump back into the
|
2528 |
recursion to try other alternatives, so the entire match fails.
|
2529 |
.P
|
2530 |
The second way in which PCRE and Perl differ in their recursion processing is
|
2531 |
in the handling of captured values. In Perl, when a subpattern is called
|
2532 |
recursively or as a subpattern (see the next section), it has no access to any
|
2533 |
values that were captured outside the recursion, whereas in PCRE these values
|
2534 |
can be referenced. Consider this pattern:
|
2535 |
.sp
|
2536 |
^(.)(\e1|a(?2))
|
2537 |
.sp
|
2538 |
In PCRE, this pattern matches "bab". The first capturing parentheses match "b",
|
2539 |
then in the second group, when the back reference \e1 fails to match "b", the
|
2540 |
second alternative matches "a" and then recurses. In the recursion, \e1 does
|
2541 |
now match "b" and so the whole match succeeds. In Perl, the pattern fails to
|
2542 |
match because inside the recursive call \e1 cannot access the externally set
|
2543 |
value.
|
2544 |
.
|
2545 |
.
|
2546 |
.\" HTML <a name="subpatternsassubroutines"></a>
|
2547 |
.SH "SUBPATTERNS AS SUBROUTINES"
|
2548 |
.rs
|
2549 |
.sp
|
2550 |
If the syntax for a recursive subpattern call (either by number or by
|
2551 |
name) is used outside the parentheses to which it refers, it operates like a
|
2552 |
subroutine in a programming language. The called subpattern may be defined
|
2553 |
before or after the reference. A numbered reference can be absolute or
|
2554 |
relative, as in these examples:
|
2555 |
.sp
|
2556 |
(...(absolute)...)...(?2)...
|
2557 |
(...(relative)...)...(?-1)...
|
2558 |
(...(?+1)...(relative)...
|
2559 |
.sp
|
2560 |
An earlier example pointed out that the pattern
|
2561 |
.sp
|
2562 |
(sens|respons)e and \e1ibility
|
2563 |
.sp
|
2564 |
matches "sense and sensibility" and "response and responsibility", but not
|
2565 |
"sense and responsibility". If instead the pattern
|
2566 |
.sp
|
2567 |
(sens|respons)e and (?1)ibility
|
2568 |
.sp
|
2569 |
is used, it does match "sense and responsibility" as well as the other two
|
2570 |
strings. Another example is given in the discussion of DEFINE above.
|
2571 |
.P
|
2572 |
All subroutine calls, whether recursive or not, are always treated as atomic
|
2573 |
groups. That is, once a subroutine has matched some of the subject string, it
|
2574 |
is never re-entered, even if it contains untried alternatives and there is a
|
2575 |
subsequent matching failure. Any capturing parentheses that are set during the
|
2576 |
subroutine call revert to their previous values afterwards.
|
2577 |
.P
|
2578 |
Processing options such as case-independence are fixed when a subpattern is
|
2579 |
defined, so if it is used as a subroutine, such options cannot be changed for
|
2580 |
different calls. For example, consider this pattern:
|
2581 |
.sp
|
2582 |
(abc)(?i:(?-1))
|
2583 |
.sp
|
2584 |
It matches "abcabc". It does not match "abcABC" because the change of
|
2585 |
processing option does not affect the called subpattern.
|
2586 |
.
|
2587 |
.
|
2588 |
.\" HTML <a name="onigurumasubroutines"></a>
|
2589 |
.SH "ONIGURUMA SUBROUTINE SYNTAX"
|
2590 |
.rs
|
2591 |
.sp
|
2592 |
For compatibility with Oniguruma, the non-Perl syntax \eg followed by a name or
|
2593 |
a number enclosed either in angle brackets or single quotes, is an alternative
|
2594 |
syntax for referencing a subpattern as a subroutine, possibly recursively. Here
|
2595 |
are two of the examples used above, rewritten using this syntax:
|
2596 |
.sp
|
2597 |
(?<pn> \e( ( (?>[^()]+) | \eg<pn> )* \e) )
|
2598 |
(sens|respons)e and \eg'1'ibility
|
2599 |
.sp
|
2600 |
PCRE supports an extension to Oniguruma: if a number is preceded by a
|
2601 |
plus or a minus sign it is taken as a relative reference. For example:
|
2602 |
.sp
|
2603 |
(abc)(?i:\eg<-1>)
|
2604 |
.sp
|
2605 |
Note that \eg{...} (Perl syntax) and \eg<...> (Oniguruma syntax) are \fInot\fP
|
2606 |
synonymous. The former is a back reference; the latter is a subroutine call.
|
2607 |
.
|
2608 |
.
|
2609 |
.SH CALLOUTS
|
2610 |
.rs
|
2611 |
.sp
|
2612 |
Perl has a feature whereby using the sequence (?{...}) causes arbitrary Perl
|
2613 |
code to be obeyed in the middle of matching a regular expression. This makes it
|
2614 |
possible, amongst other things, to extract different substrings that match the
|
2615 |
same pair of parentheses when there is a repetition.
|
2616 |
.P
|
2617 |
PCRE provides a similar feature, but of course it cannot obey arbitrary Perl
|
2618 |
code. The feature is called "callout". The caller of PCRE provides an external
|
2619 |
function by putting its entry point in the global variable \fIpcre_callout\fP
|
2620 |
(8-bit library) or \fIpcre[16|32]_callout\fP (16-bit or 32-bit library).
|
2621 |
By default, this variable contains NULL, which disables all calling out.
|
2622 |
.P
|
2623 |
Within a regular expression, (?C) indicates the points at which the external
|
2624 |
function is to be called. If you want to identify different callout points, you
|
2625 |
can put a number less than 256 after the letter C. The default value is zero.
|
2626 |
For example, this pattern has two callout points:
|
2627 |
.sp
|
2628 |
(?C1)abc(?C2)def
|
2629 |
.sp
|
2630 |
If the PCRE_AUTO_CALLOUT flag is passed to a compiling function, callouts are
|
2631 |
automatically installed before each item in the pattern. They are all numbered
|
2632 |
255.
|
2633 |
.P
|
2634 |
During matching, when PCRE reaches a callout point, the external function is
|
2635 |
called. It is provided with the number of the callout, the position in the
|
2636 |
pattern, and, optionally, one item of data originally supplied by the caller of
|
2637 |
the matching function. The callout function may cause matching to proceed, to
|
2638 |
backtrack, or to fail altogether. A complete description of the interface to
|
2639 |
the callout function is given in the
|
2640 |
.\" HREF
|
2641 |
\fBpcrecallout\fP
|
2642 |
.\"
|
2643 |
documentation.
|
2644 |
.
|
2645 |
.
|
2646 |
.\" HTML <a name="backtrackcontrol"></a>
|
2647 |
.SH "BACKTRACKING CONTROL"
|
2648 |
.rs
|
2649 |
.sp
|
2650 |
Perl 5.10 introduced a number of "Special Backtracking Control Verbs", which
|
2651 |
are described in the Perl documentation as "experimental and subject to change
|
2652 |
or removal in a future version of Perl". It goes on to say: "Their usage in
|
2653 |
production code should be noted to avoid problems during upgrades." The same
|
2654 |
remarks apply to the PCRE features described in this section.
|
2655 |
.P
|
2656 |
Since these verbs are specifically related to backtracking, most of them can be
|
2657 |
used only when the pattern is to be matched using one of the traditional
|
2658 |
matching functions, which use a backtracking algorithm. With the exception of
|
2659 |
(*FAIL), which behaves like a failing negative assertion, they cause an error
|
2660 |
if encountered by a DFA matching function.
|
2661 |
.P
|
2662 |
If any of these verbs are used in an assertion or in a subpattern that is
|
2663 |
called as a subroutine (whether or not recursively), their effect is confined
|
2664 |
to that subpattern; it does not extend to the surrounding pattern, with one
|
2665 |
exception: the name from a *(MARK), (*PRUNE), or (*THEN) that is encountered in
|
2666 |
a successful positive assertion \fIis\fP passed back when a match succeeds
|
2667 |
(compare capturing parentheses in assertions). Note that such subpatterns are
|
2668 |
processed as anchored at the point where they are tested. Note also that Perl's
|
2669 |
treatment of subroutines and assertions is different in some cases.
|
2670 |
.P
|
2671 |
The new verbs make use of what was previously invalid syntax: an opening
|
2672 |
parenthesis followed by an asterisk. They are generally of the form
|
2673 |
(*VERB) or (*VERB:NAME). Some may take either form, with differing behaviour,
|
2674 |
depending on whether or not an argument is present. A name is any sequence of
|
2675 |
characters that does not include a closing parenthesis. The maximum length of
|
2676 |
name is 255 in the 8-bit library and 65535 in the 16-bit and 32-bit library.
|
2677 |
If the name is empty, that is, if the closing parenthesis immediately follows
|
2678 |
the colon, the effect is as if the colon were not there. Any number of these
|
2679 |
verbs may occur in a pattern.
|
2680 |
.
|
2681 |
.
|
2682 |
.\" HTML <a name="nooptimize"></a>
|
2683 |
.SS "Optimizations that affect backtracking verbs"
|
2684 |
.rs
|
2685 |
.sp
|
2686 |
PCRE contains some optimizations that are used to speed up matching by running
|
2687 |
some checks at the start of each match attempt. For example, it may know the
|
2688 |
minimum length of matching subject, or that a particular character must be
|
2689 |
present. When one of these optimizations suppresses the running of a match, any
|
2690 |
included backtracking verbs will not, of course, be processed. You can suppress
|
2691 |
the start-of-match optimizations by setting the PCRE_NO_START_OPTIMIZE option
|
2692 |
when calling \fBpcre_compile()\fP or \fBpcre_exec()\fP, or by starting the
|
2693 |
pattern with (*NO_START_OPT). There is more discussion of this option in the
|
2694 |
section entitled
|
2695 |
.\" HTML <a href="pcreapi.html#execoptions">
|
2696 |
.\" </a>
|
2697 |
"Option bits for \fBpcre_exec()\fP"
|
2698 |
.\"
|
2699 |
in the
|
2700 |
.\" HREF
|
2701 |
\fBpcreapi\fP
|
2702 |
.\"
|
2703 |
documentation.
|
2704 |
.P
|
2705 |
Experiments with Perl suggest that it too has similar optimizations, sometimes
|
2706 |
leading to anomalous results.
|
2707 |
.
|
2708 |
.
|
2709 |
.SS "Verbs that act immediately"
|
2710 |
.rs
|
2711 |
.sp
|
2712 |
The following verbs act as soon as they are encountered. They may not be
|
2713 |
followed by a name.
|
2714 |
.sp
|
2715 |
(*ACCEPT)
|
2716 |
.sp
|
2717 |
This verb causes the match to end successfully, skipping the remainder of the
|
2718 |
pattern. However, when it is inside a subpattern that is called as a
|
2719 |
subroutine, only that subpattern is ended successfully. Matching then continues
|
2720 |
at the outer level. If (*ACCEPT) is inside capturing parentheses, the data so
|
2721 |
far is captured. For example:
|
2722 |
.sp
|
2723 |
A((?:A|B(*ACCEPT)|C)D)
|
2724 |
.sp
|
2725 |
This matches "AB", "AAD", or "ACD"; when it matches "AB", "B" is captured by
|
2726 |
the outer parentheses.
|
2727 |
.sp
|
2728 |
(*FAIL) or (*F)
|
2729 |
.sp
|
2730 |
This verb causes a matching failure, forcing backtracking to occur. It is
|
2731 |
equivalent to (?!) but easier to read. The Perl documentation notes that it is
|
2732 |
probably useful only when combined with (?{}) or (??{}). Those are, of course,
|
2733 |
Perl features that are not present in PCRE. The nearest equivalent is the
|
2734 |
callout feature, as for example in this pattern:
|
2735 |
.sp
|
2736 |
a+(?C)(*FAIL)
|
2737 |
.sp
|
2738 |
A match with the string "aaaa" always fails, but the callout is taken before
|
2739 |
each backtrack happens (in this example, 10 times).
|
2740 |
.
|
2741 |
.
|
2742 |
.SS "Recording which path was taken"
|
2743 |
.rs
|
2744 |
.sp
|
2745 |
There is one verb whose main purpose is to track how a match was arrived at,
|
2746 |
though it also has a secondary use in conjunction with advancing the match
|
2747 |
starting point (see (*SKIP) below).
|
2748 |
.sp
|
2749 |
(*MARK:NAME) or (*:NAME)
|
2750 |
.sp
|
2751 |
A name is always required with this verb. There may be as many instances of
|
2752 |
(*MARK) as you like in a pattern, and their names do not have to be unique.
|
2753 |
.P
|
2754 |
When a match succeeds, the name of the last-encountered (*MARK) on the matching
|
2755 |
path is passed back to the caller as described in the section entitled
|
2756 |
.\" HTML <a href="pcreapi.html#extradata">
|
2757 |
.\" </a>
|
2758 |
"Extra data for \fBpcre_exec()\fP"
|
2759 |
.\"
|
2760 |
in the
|
2761 |
.\" HREF
|
2762 |
\fBpcreapi\fP
|
2763 |
.\"
|
2764 |
documentation. Here is an example of \fBpcretest\fP output, where the /K
|
2765 |
modifier requests the retrieval and outputting of (*MARK) data:
|
2766 |
.sp
|
2767 |
re> /X(*MARK:A)Y|X(*MARK:B)Z/K
|
2768 |
data> XY
|
2769 |
0: XY
|
2770 |
MK: A
|
2771 |
XZ
|
2772 |
0: XZ
|
2773 |
MK: B
|
2774 |
.sp
|
2775 |
The (*MARK) name is tagged with "MK:" in this output, and in this example it
|
2776 |
indicates which of the two alternatives matched. This is a more efficient way
|
2777 |
of obtaining this information than putting each alternative in its own
|
2778 |
capturing parentheses.
|
2779 |
.P
|
2780 |
If (*MARK) is encountered in a positive assertion, its name is recorded and
|
2781 |
passed back if it is the last-encountered. This does not happen for negative
|
2782 |
assertions.
|
2783 |
.P
|
2784 |
After a partial match or a failed match, the name of the last encountered
|
2785 |
(*MARK) in the entire match process is returned. For example:
|
2786 |
.sp
|
2787 |
re> /X(*MARK:A)Y|X(*MARK:B)Z/K
|
2788 |
data> XP
|
2789 |
No match, mark = B
|
2790 |
.sp
|
2791 |
Note that in this unanchored example the mark is retained from the match
|
2792 |
attempt that started at the letter "X" in the subject. Subsequent match
|
2793 |
attempts starting at "P" and then with an empty string do not get as far as the
|
2794 |
(*MARK) item, but nevertheless do not reset it.
|
2795 |
.P
|
2796 |
If you are interested in (*MARK) values after failed matches, you should
|
2797 |
probably set the PCRE_NO_START_OPTIMIZE option
|
2798 |
.\" HTML <a href="#nooptimize">
|
2799 |
.\" </a>
|
2800 |
(see above)
|
2801 |
.\"
|
2802 |
to ensure that the match is always attempted.
|
2803 |
.
|
2804 |
.
|
2805 |
.SS "Verbs that act after backtracking"
|
2806 |
.rs
|
2807 |
.sp
|
2808 |
The following verbs do nothing when they are encountered. Matching continues
|
2809 |
with what follows, but if there is no subsequent match, causing a backtrack to
|
2810 |
the verb, a failure is forced. That is, backtracking cannot pass to the left of
|
2811 |
the verb. However, when one of these verbs appears inside an atomic group, its
|
2812 |
effect is confined to that group, because once the group has been matched,
|
2813 |
there is never any backtracking into it. In this situation, backtracking can
|
2814 |
"jump back" to the left of the entire atomic group. (Remember also, as stated
|
2815 |
above, that this localization also applies in subroutine calls and assertions.)
|
2816 |
.P
|
2817 |
These verbs differ in exactly what kind of failure occurs when backtracking
|
2818 |
reaches them.
|
2819 |
.sp
|
2820 |
(*COMMIT)
|
2821 |
.sp
|
2822 |
This verb, which may not be followed by a name, causes the whole match to fail
|
2823 |
outright if the rest of the pattern does not match. Even if the pattern is
|
2824 |
unanchored, no further attempts to find a match by advancing the starting point
|
2825 |
take place. Once (*COMMIT) has been passed, \fBpcre_exec()\fP is committed to
|
2826 |
finding a match at the current starting point, or not at all. For example:
|
2827 |
.sp
|
2828 |
a+(*COMMIT)b
|
2829 |
.sp
|
2830 |
This matches "xxaab" but not "aacaab". It can be thought of as a kind of
|
2831 |
dynamic anchor, or "I've started, so I must finish." The name of the most
|
2832 |
recently passed (*MARK) in the path is passed back when (*COMMIT) forces a
|
2833 |
match failure.
|
2834 |
.P
|
2835 |
Note that (*COMMIT) at the start of a pattern is not the same as an anchor,
|
2836 |
unless PCRE's start-of-match optimizations are turned off, as shown in this
|
2837 |
\fBpcretest\fP example:
|
2838 |
.sp
|
2839 |
re> /(*COMMIT)abc/
|
2840 |
data> xyzabc
|
2841 |
0: abc
|
2842 |
xyzabc\eY
|
2843 |
No match
|
2844 |
.sp
|
2845 |
PCRE knows that any match must start with "a", so the optimization skips along
|
2846 |
the subject to "a" before running the first match attempt, which succeeds. When
|
2847 |
the optimization is disabled by the \eY escape in the second subject, the match
|
2848 |
starts at "x" and so the (*COMMIT) causes it to fail without trying any other
|
2849 |
starting points.
|
2850 |
.sp
|
2851 |
(*PRUNE) or (*PRUNE:NAME)
|
2852 |
.sp
|
2853 |
This verb causes the match to fail at the current starting position in the
|
2854 |
subject if the rest of the pattern does not match. If the pattern is
|
2855 |
unanchored, the normal "bumpalong" advance to the next starting character then
|
2856 |
happens. Backtracking can occur as usual to the left of (*PRUNE), before it is
|
2857 |
reached, or when matching to the right of (*PRUNE), but if there is no match to
|
2858 |
the right, backtracking cannot cross (*PRUNE). In simple cases, the use of
|
2859 |
(*PRUNE) is just an alternative to an atomic group or possessive quantifier,
|
2860 |
but there are some uses of (*PRUNE) that cannot be expressed in any other way.
|
2861 |
The behaviour of (*PRUNE:NAME) is the same as (*MARK:NAME)(*PRUNE). In an
|
2862 |
anchored pattern (*PRUNE) has the same effect as (*COMMIT).
|
2863 |
.sp
|
2864 |
(*SKIP)
|
2865 |
.sp
|
2866 |
This verb, when given without a name, is like (*PRUNE), except that if the
|
2867 |
pattern is unanchored, the "bumpalong" advance is not to the next character,
|
2868 |
but to the position in the subject where (*SKIP) was encountered. (*SKIP)
|
2869 |
signifies that whatever text was matched leading up to it cannot be part of a
|
2870 |
successful match. Consider:
|
2871 |
.sp
|
2872 |
a+(*SKIP)b
|
2873 |
.sp
|
2874 |
If the subject is "aaaac...", after the first match attempt fails (starting at
|
2875 |
the first character in the string), the starting point skips on to start the
|
2876 |
next attempt at "c". Note that a possessive quantifer does not have the same
|
2877 |
effect as this example; although it would suppress backtracking during the
|
2878 |
first match attempt, the second attempt would start at the second character
|
2879 |
instead of skipping on to "c".
|
2880 |
.sp
|
2881 |
(*SKIP:NAME)
|
2882 |
.sp
|
2883 |
When (*SKIP) has an associated name, its behaviour is modified. If the
|
2884 |
following pattern fails to match, the previous path through the pattern is
|
2885 |
searched for the most recent (*MARK) that has the same name. If one is found,
|
2886 |
the "bumpalong" advance is to the subject position that corresponds to that
|
2887 |
(*MARK) instead of to where (*SKIP) was encountered. If no (*MARK) with a
|
2888 |
matching name is found, the (*SKIP) is ignored.
|
2889 |
.sp
|
2890 |
(*THEN) or (*THEN:NAME)
|
2891 |
.sp
|
2892 |
This verb causes a skip to the next innermost alternative if the rest of the
|
2893 |
pattern does not match. That is, it cancels pending backtracking, but only
|
2894 |
within the current alternative. Its name comes from the observation that it can
|
2895 |
be used for a pattern-based if-then-else block:
|
2896 |
.sp
|
2897 |
( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ...
|
2898 |
.sp
|
2899 |
If the COND1 pattern matches, FOO is tried (and possibly further items after
|
2900 |
the end of the group if FOO succeeds); on failure, the matcher skips to the
|
2901 |
second alternative and tries COND2, without backtracking into COND1. The
|
2902 |
behaviour of (*THEN:NAME) is exactly the same as (*MARK:NAME)(*THEN).
|
2903 |
If (*THEN) is not inside an alternation, it acts like (*PRUNE).
|
2904 |
.P
|
2905 |
Note that a subpattern that does not contain a | character is just a part of
|
2906 |
the enclosing alternative; it is not a nested alternation with only one
|
2907 |
alternative. The effect of (*THEN) extends beyond such a subpattern to the
|
2908 |
enclosing alternative. Consider this pattern, where A, B, etc. are complex
|
2909 |
pattern fragments that do not contain any | characters at this level:
|
2910 |
.sp
|
2911 |
A (B(*THEN)C) | D
|
2912 |
.sp
|
2913 |
If A and B are matched, but there is a failure in C, matching does not
|
2914 |
backtrack into A; instead it moves to the next alternative, that is, D.
|
2915 |
However, if the subpattern containing (*THEN) is given an alternative, it
|
2916 |
behaves differently:
|
2917 |
.sp
|
2918 |
A (B(*THEN)C | (*FAIL)) | D
|
2919 |
.sp
|
2920 |
The effect of (*THEN) is now confined to the inner subpattern. After a failure
|
2921 |
in C, matching moves to (*FAIL), which causes the whole subpattern to fail
|
2922 |
because there are no more alternatives to try. In this case, matching does now
|
2923 |
backtrack into A.
|
2924 |
.P
|
2925 |
Note also that a conditional subpattern is not considered as having two
|
2926 |
alternatives, because only one is ever used. In other words, the | character in
|
2927 |
a conditional subpattern has a different meaning. Ignoring white space,
|
2928 |
consider:
|
2929 |
.sp
|
2930 |
^.*? (?(?=a) a | b(*THEN)c )
|
2931 |
.sp
|
2932 |
If the subject is "ba", this pattern does not match. Because .*? is ungreedy,
|
2933 |
it initially matches zero characters. The condition (?=a) then fails, the
|
2934 |
character "b" is matched, but "c" is not. At this point, matching does not
|
2935 |
backtrack to .*? as might perhaps be expected from the presence of the |
|
2936 |
character. The conditional subpattern is part of the single alternative that
|
2937 |
comprises the whole pattern, and so the match fails. (If there was a backtrack
|
2938 |
into .*?, allowing it to match "b", the match would succeed.)
|
2939 |
.P
|
2940 |
The verbs just described provide four different "strengths" of control when
|
2941 |
subsequent matching fails. (*THEN) is the weakest, carrying on the match at the
|
2942 |
next alternative. (*PRUNE) comes next, failing the match at the current
|
2943 |
starting position, but allowing an advance to the next character (for an
|
2944 |
unanchored pattern). (*SKIP) is similar, except that the advance may be more
|
2945 |
than one character. (*COMMIT) is the strongest, causing the entire match to
|
2946 |
fail.
|
2947 |
.P
|
2948 |
If more than one such verb is present in a pattern, the "strongest" one wins.
|
2949 |
For example, consider this pattern, where A, B, etc. are complex pattern
|
2950 |
fragments:
|
2951 |
.sp
|
2952 |
(A(*COMMIT)B(*THEN)C|D)
|
2953 |
.sp
|
2954 |
Once A has matched, PCRE is committed to this match, at the current starting
|
2955 |
position. If subsequently B matches, but C does not, the normal (*THEN) action
|
2956 |
of trying the next alternative (that is, D) does not happen because (*COMMIT)
|
2957 |
overrides.
|
2958 |
.
|
2959 |
.
|
2960 |
.SH "SEE ALSO"
|
2961 |
.rs
|
2962 |
.sp
|
2963 |
\fBpcreapi\fP(3), \fBpcrecallout\fP(3), \fBpcrematching\fP(3),
|
2964 |
\fBpcresyntax\fP(3), \fBpcre\fP(3), \fBpcre16(3)\fP, \fBpcre32(3)\fP.
|
2965 |
.
|
2966 |
.
|
2967 |
.SH AUTHOR
|
2968 |
.rs
|
2969 |
.sp
|
2970 |
.nf
|
2971 |
Philip Hazel
|
2972 |
University Computing Service
|
2973 |
Cambridge CB2 3QH, England.
|
2974 |
.fi
|
2975 |
.
|
2976 |
.
|
2977 |
.SH REVISION
|
2978 |
.rs
|
2979 |
.sp
|
2980 |
.nf
|
2981 |
Last updated: 11 November 2012
|
2982 |
Copyright (c) 1997-2012 University of Cambridge.
|
2983 |
.fi
|