| 42 |
.\" |
.\" |
| 43 |
page. |
page. |
| 44 |
.P |
.P |
| 45 |
|
Another special sequence that may appear at the start of a pattern or in |
| 46 |
|
combination with (*UTF8) is: |
| 47 |
|
.sp |
| 48 |
|
(*UCP) |
| 49 |
|
.sp |
| 50 |
|
This has the same effect as setting the PCRE_UCP option: it causes sequences |
| 51 |
|
such as \ed and \ew to use Unicode properties to determine character types, |
| 52 |
|
instead of recognizing only characters with codes less than 128 via a lookup |
| 53 |
|
table. |
| 54 |
|
.P |
| 55 |
The remainder of this document discusses the patterns that are supported by |
The remainder of this document discusses the patterns that are supported by |
| 56 |
PCRE when its main matching function, \fBpcre_exec()\fP, is used. |
PCRE when its main matching function, \fBpcre_exec()\fP, is used. |
| 57 |
From release 6.0, PCRE offers a second matching function, |
From release 6.0, PCRE offers a second matching function, |
| 66 |
page. |
page. |
| 67 |
. |
. |
| 68 |
. |
. |
| 69 |
|
.\" HTML <a name="newlines"></a> |
| 70 |
.SH "NEWLINE CONVENTIONS" |
.SH "NEWLINE CONVENTIONS" |
| 71 |
.rs |
.rs |
| 72 |
.sp |
.sp |
| 106 |
they must be in upper case. If more than one of them is present, the last one |
they must be in upper case. If more than one of them is present, the last one |
| 107 |
is used. |
is used. |
| 108 |
.P |
.P |
| 109 |
The newline convention does not affect what the \eR escape sequence matches. By |
The newline convention affects the interpretation of the dot metacharacter when |
| 110 |
default, this is any Unicode newline sequence, for Perl compatibility. However, |
PCRE_DOTALL is not set, and also the behaviour of \eN. However, it does not |
| 111 |
this can be changed; see the description of \eR in the section entitled |
affect what the \eR escape sequence matches. By default, this is any Unicode |
| 112 |
|
newline sequence, for Perl compatibility. However, this can be changed; see the |
| 113 |
|
description of \eR in the section entitled |
| 114 |
.\" HTML <a href="#newlineseq"> |
.\" HTML <a href="#newlineseq"> |
| 115 |
.\" </a> |
.\" </a> |
| 116 |
"Newline sequences" |
"Newline sequences" |
| 182 |
.rs |
.rs |
| 183 |
.sp |
.sp |
| 184 |
The backslash character has several uses. Firstly, if it is followed by a |
The backslash character has several uses. Firstly, if it is followed by a |
| 185 |
non-alphanumeric character, it takes away any special meaning that character |
character that is not a number or a letter, it takes away any special meaning |
| 186 |
may have. This use of backslash as an escape character applies both inside and |
that character may have. This use of backslash as an escape character applies |
| 187 |
outside character classes. |
both inside and outside character classes. |
| 188 |
.P |
.P |
| 189 |
For example, if you want to match a * character, you write \e* in the pattern. |
For example, if you want to match a * character, you write \e* in the pattern. |
| 190 |
This escaping action applies whether or not the following character would |
This escaping action applies whether or not the following character would |
| 192 |
non-alphanumeric with backslash to specify that it stands for itself. In |
non-alphanumeric with backslash to specify that it stands for itself. In |
| 193 |
particular, if you want to match a backslash, you write \e\e. |
particular, if you want to match a backslash, you write \e\e. |
| 194 |
.P |
.P |
| 195 |
|
In UTF-8 mode, only ASCII numbers and letters have any special meaning after a |
| 196 |
|
backslash. All other characters (in particular, those whose codepoints are |
| 197 |
|
greater than 127) are treated as literals. |
| 198 |
|
.P |
| 199 |
If a pattern is compiled with the PCRE_EXTENDED option, whitespace in the |
If a pattern is compiled with the PCRE_EXTENDED option, whitespace in the |
| 200 |
pattern (other than in a character class) and characters between a # outside |
pattern (other than in a character class) and characters between a # outside |
| 201 |
a character class and the next newline are ignored. An escaping backslash can |
a character class and the next newline are ignored. An escaping backslash can |
| 215 |
\eQabc\eE\e$\eQxyz\eE abc$xyz abc$xyz |
\eQabc\eE\e$\eQxyz\eE abc$xyz abc$xyz |
| 216 |
.sp |
.sp |
| 217 |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
| 218 |
|
An isolated \eE that is not preceded by \eQ is ignored. |
| 219 |
. |
. |
| 220 |
. |
. |
| 221 |
.\" HTML <a name="digitsafterbackslash"></a> |
.\" HTML <a name="digitsafterbackslash"></a> |
| 229 |
one of the following escape sequences than the binary character it represents: |
one of the following escape sequences than the binary character it represents: |
| 230 |
.sp |
.sp |
| 231 |
\ea alarm, that is, the BEL character (hex 07) |
\ea alarm, that is, the BEL character (hex 07) |
| 232 |
\ecx "control-x", where x is any character |
\ecx "control-x", where x is any ASCII character |
| 233 |
\ee escape (hex 1B) |
\ee escape (hex 1B) |
| 234 |
\ef formfeed (hex 0C) |
\ef formfeed (hex 0C) |
| 235 |
\en linefeed (hex 0A) |
\en linefeed (hex 0A) |
| 241 |
.sp |
.sp |
| 242 |
The precise effect of \ecx is as follows: if x is a lower case letter, it |
The precise effect of \ecx is as follows: if x is a lower case letter, it |
| 243 |
is converted to upper case. Then bit 6 of the character (hex 40) is inverted. |
is converted to upper case. Then bit 6 of the character (hex 40) is inverted. |
| 244 |
Thus \ecz becomes hex 1A, but \ec{ becomes hex 3B, while \ec; becomes hex |
Thus \ecz becomes hex 1A (z is 7A), but \ec{ becomes hex 3B ({ is 7B), while |
| 245 |
7B. |
\ec; becomes hex 7B (; is 3B). If the byte following \ec has a value greater |
| 246 |
|
than 127, a compile-time error occurs. This locks out non-ASCII characters in |
| 247 |
|
both byte mode and UTF-8 mode. (When PCRE is compiled in EBCDIC mode, all byte |
| 248 |
|
values are valid. A lower case letter is converted to upper case, and then the |
| 249 |
|
0xc0 bits are flipped.) |
| 250 |
.P |
.P |
| 251 |
After \ex, from zero to two hexadecimal digits are read (letters can be in |
After \ex, from zero to two hexadecimal digits are read (letters can be in |
| 252 |
upper or lower case). Any number of hexadecimal digits may appear between \ex{ |
upper or lower case). Any number of hexadecimal digits may appear between \ex{ |
| 317 |
.P |
.P |
| 318 |
All the sequences that define a single character value can be used both inside |
All the sequences that define a single character value can be used both inside |
| 319 |
and outside character classes. In addition, inside a character class, the |
and outside character classes. In addition, inside a character class, the |
| 320 |
sequence \eb is interpreted as the backspace character (hex 08), and the |
sequence \eb is interpreted as the backspace character (hex 08). The sequences |
| 321 |
sequences \eR and \eX are interpreted as the characters "R" and "X", |
\eB, \eN, \eR, and \eX are not special inside a character class. Like any other |
| 322 |
respectively. Outside a character class, these sequences have different |
unrecognized escape sequences, they are treated as the literal characters "B", |
| 323 |
meanings |
"N", "R", and "X" by default, but cause an error if the PCRE_EXTRA option is |
| 324 |
.\" HTML <a href="#uniextseq"> |
set. Outside a character class, these sequences have different meanings. |
|
.\" </a> |
|
|
(see below). |
|
|
.\" |
|
| 325 |
. |
. |
| 326 |
. |
. |
| 327 |
.SS "Absolute and relative back references" |
.SS "Absolute and relative back references" |
| 360 |
call. |
call. |
| 361 |
. |
. |
| 362 |
. |
. |
| 363 |
|
.\" HTML <a name="genericchartypes"></a> |
| 364 |
.SS "Generic character types" |
.SS "Generic character types" |
| 365 |
.rs |
.rs |
| 366 |
.sp |
.sp |
| 367 |
Another use of backslash is for specifying generic character types. The |
Another use of backslash is for specifying generic character types: |
|
following are always recognized: |
|
| 368 |
.sp |
.sp |
| 369 |
\ed any decimal digit |
\ed any decimal digit |
| 370 |
\eD any character that is not a decimal digit |
\eD any character that is not a decimal digit |
| 377 |
\ew any "word" character |
\ew any "word" character |
| 378 |
\eW any "non-word" character |
\eW any "non-word" character |
| 379 |
.sp |
.sp |
| 380 |
Each pair of escape sequences partitions the complete set of characters into |
There is also the single sequence \eN, which matches a non-newline character. |
| 381 |
two disjoint sets. Any given character matches one, and only one, of each pair. |
This is the same as |
| 382 |
|
.\" HTML <a href="#fullstopdot"> |
| 383 |
|
.\" </a> |
| 384 |
|
the "." metacharacter |
| 385 |
|
.\" |
| 386 |
|
when PCRE_DOTALL is not set. |
| 387 |
.P |
.P |
| 388 |
These character type sequences can appear both inside and outside character |
Each pair of lower and upper case escape sequences partitions the complete set |
| 389 |
|
of characters into two disjoint sets. Any given character matches one, and only |
| 390 |
|
one, of each pair. The sequences can appear both inside and outside character |
| 391 |
classes. They each match one character of the appropriate type. If the current |
classes. They each match one character of the appropriate type. If the current |
| 392 |
matching point is at the end of the subject string, all of them fail, since |
matching point is at the end of the subject string, all of them fail, because |
| 393 |
there is no character to match. |
there is no character to match. |
| 394 |
.P |
.P |
| 395 |
For compatibility with Perl, \es does not match the VT character (code 11). |
For compatibility with Perl, \es does not match the VT character (code 11). |
| 398 |
included in a Perl script, \es may match the VT character. In PCRE, it never |
included in a Perl script, \es may match the VT character. In PCRE, it never |
| 399 |
does. |
does. |
| 400 |
.P |
.P |
| 401 |
In UTF-8 mode, characters with values greater than 128 never match \ed, \es, or |
A "word" character is an underscore or any character that is a letter or digit. |
| 402 |
\ew, and always match \eD, \eS, and \eW. This is true even when Unicode |
By default, the definition of letters and digits is controlled by PCRE's |
| 403 |
character property support is available. These sequences retain their original |
low-valued character tables, and may vary if locale-specific matching is taking |
| 404 |
meanings from before UTF-8 support was available, mainly for efficiency |
place (see |
| 405 |
reasons. Note that this also affects \eb, because it is defined in terms of \ew |
.\" HTML <a href="pcreapi.html#localesupport"> |
| 406 |
and \eW. |
.\" </a> |
| 407 |
.P |
"Locale support" |
| 408 |
The sequences \eh, \eH, \ev, and \eV are Perl 5.10 features. In contrast to the |
.\" |
| 409 |
other sequences, these do match certain high-valued codepoints in UTF-8 mode. |
in the |
| 410 |
The horizontal space characters are: |
.\" HREF |
| 411 |
|
\fBpcreapi\fP |
| 412 |
|
.\" |
| 413 |
|
page). For example, in a French locale such as "fr_FR" in Unix-like systems, |
| 414 |
|
or "french" in Windows, some character codes greater than 128 are used for |
| 415 |
|
accented letters, and these are then matched by \ew. The use of locales with |
| 416 |
|
Unicode is discouraged. |
| 417 |
|
.P |
| 418 |
|
By default, in UTF-8 mode, characters with values greater than 128 never match |
| 419 |
|
\ed, \es, or \ew, and always match \eD, \eS, and \eW. These sequences retain |
| 420 |
|
their original meanings from before UTF-8 support was available, mainly for |
| 421 |
|
efficiency reasons. However, if PCRE is compiled with Unicode property support, |
| 422 |
|
and the PCRE_UCP option is set, the behaviour is changed so that Unicode |
| 423 |
|
properties are used to determine character types, as follows: |
| 424 |
|
.sp |
| 425 |
|
\ed any character that \ep{Nd} matches (decimal digit) |
| 426 |
|
\es any character that \ep{Z} matches, plus HT, LF, FF, CR |
| 427 |
|
\ew any character that \ep{L} or \ep{N} matches, plus underscore |
| 428 |
|
.sp |
| 429 |
|
The upper case escapes match the inverse sets of characters. Note that \ed |
| 430 |
|
matches only decimal digits, whereas \ew matches any Unicode digit, as well as |
| 431 |
|
any Unicode letter, and underscore. Note also that PCRE_UCP affects \eb, and |
| 432 |
|
\eB because they are defined in terms of \ew and \eW. Matching these sequences |
| 433 |
|
is noticeably slower when PCRE_UCP is set. |
| 434 |
|
.P |
| 435 |
|
The sequences \eh, \eH, \ev, and \eV are features that were added to Perl at |
| 436 |
|
release 5.10. In contrast to the other sequences, which match only ASCII |
| 437 |
|
characters by default, these always match certain high-valued codepoints in |
| 438 |
|
UTF-8 mode, whether or not PCRE_UCP is set. The horizontal space characters |
| 439 |
|
are: |
| 440 |
.sp |
.sp |
| 441 |
U+0009 Horizontal tab |
U+0009 Horizontal tab |
| 442 |
U+0020 Space |
U+0020 Space |
| 467 |
U+0085 Next line |
U+0085 Next line |
| 468 |
U+2028 Line separator |
U+2028 Line separator |
| 469 |
U+2029 Paragraph separator |
U+2029 Paragraph separator |
|
.P |
|
|
A "word" character is an underscore or any character less than 256 that is a |
|
|
letter or digit. The definition of letters and digits is controlled by PCRE's |
|
|
low-valued character tables, and may vary if locale-specific matching is taking |
|
|
place (see |
|
|
.\" HTML <a href="pcreapi.html#localesupport"> |
|
|
.\" </a> |
|
|
"Locale support" |
|
|
.\" |
|
|
in the |
|
|
.\" HREF |
|
|
\fBpcreapi\fP |
|
|
.\" |
|
|
page). For example, in a French locale such as "fr_FR" in Unix-like systems, |
|
|
or "french" in Windows, some character codes greater than 128 are used for |
|
|
accented letters, and these are matched by \ew. The use of locales with Unicode |
|
|
is discouraged. |
|
| 470 |
. |
. |
| 471 |
. |
. |
| 472 |
.\" HTML <a name="newlineseq"></a> |
.\" HTML <a name="newlineseq"></a> |
| 474 |
.rs |
.rs |
| 475 |
.sp |
.sp |
| 476 |
Outside a character class, by default, the escape sequence \eR matches any |
Outside a character class, by default, the escape sequence \eR matches any |
| 477 |
Unicode newline sequence. This is a Perl 5.10 feature. In non-UTF-8 mode \eR is |
Unicode newline sequence. In non-UTF-8 mode \eR is equivalent to the following: |
|
equivalent to the following: |
|
| 478 |
.sp |
.sp |
| 479 |
(?>\er\en|\en|\ex0b|\ef|\er|\ex85) |
(?>\er\en|\en|\ex0b|\ef|\er|\ex85) |
| 480 |
.sp |
.sp |
| 511 |
which are not Perl-compatible, are recognized only at the very start of a |
which are not Perl-compatible, are recognized only at the very start of a |
| 512 |
pattern, and that they must be in upper case. If more than one of them is |
pattern, and that they must be in upper case. If more than one of them is |
| 513 |
present, the last one is used. They can be combined with a change of newline |
present, the last one is used. They can be combined with a change of newline |
| 514 |
convention, for example, a pattern can start with: |
convention; for example, a pattern can start with: |
| 515 |
.sp |
.sp |
| 516 |
(*ANY)(*BSR_ANYCRLF) |
(*ANY)(*BSR_ANYCRLF) |
| 517 |
.sp |
.sp |
| 518 |
Inside a character class, \eR matches the letter "R". |
They can also be combined with the (*UTF8) or (*UCP) special sequences. Inside |
| 519 |
|
a character class, \eR is treated as an unrecognized escape sequence, and so |
| 520 |
|
matches the letter "R" by default, but causes an error if PCRE_EXTRA is set. |
| 521 |
. |
. |
| 522 |
. |
. |
| 523 |
.\" HTML <a name="uniextseq"></a> |
.\" HTML <a name="uniextseq"></a> |
| 535 |
\eX an extended Unicode sequence |
\eX an extended Unicode sequence |
| 536 |
.sp |
.sp |
| 537 |
The property names represented by \fIxx\fP above are limited to the Unicode |
The property names represented by \fIxx\fP above are limited to the Unicode |
| 538 |
script names, the general category properties, and "Any", which matches any |
script names, the general category properties, "Any", which matches any |
| 539 |
character (including newline). Other properties such as "InMusicalSymbols" are |
character (including newline), and some special PCRE properties (described |
| 540 |
not currently supported by PCRE. Note that \eP{Any} does not match any |
in the |
| 541 |
characters, so always causes a match failure. |
.\" HTML <a href="#extraprops"> |
| 542 |
|
.\" </a> |
| 543 |
|
next section). |
| 544 |
|
.\" |
| 545 |
|
Other Perl properties such as "InMusicalSymbols" are not currently supported by |
| 546 |
|
PCRE. Note that \eP{Any} does not match any characters, so always causes a |
| 547 |
|
match failure. |
| 548 |
.P |
.P |
| 549 |
Sets of Unicode characters are defined as belonging to certain scripts. A |
Sets of Unicode characters are defined as belonging to certain scripts. A |
| 550 |
character from one of these sets can be matched using a script name. For |
character from one of these sets can be matched using a script name. For |
| 649 |
Vai, |
Vai, |
| 650 |
Yi. |
Yi. |
| 651 |
.P |
.P |
| 652 |
Each character has exactly one general category property, specified by a |
Each character has exactly one Unicode general category property, specified by |
| 653 |
two-letter abbreviation. For compatibility with Perl, negation can be specified |
a two-letter abbreviation. For compatibility with Perl, negation can be |
| 654 |
by including a circumflex between the opening brace and the property name. For |
specified by including a circumflex between the opening brace and the property |
| 655 |
example, \ep{^Lu} is the same as \eP{Lu}. |
name. For example, \ep{^Lu} is the same as \eP{Lu}. |
| 656 |
.P |
.P |
| 657 |
If only one letter is specified with \ep or \eP, it includes all the general |
If only one letter is specified with \ep or \eP, it includes all the general |
| 658 |
category properties that start with that letter. In this case, in the absence |
category properties that start with that letter. In this case, in the absence |
| 751 |
Matching characters by Unicode property is not fast, because PCRE has to search |
Matching characters by Unicode property is not fast, because PCRE has to search |
| 752 |
a structure that contains data for over fifteen thousand characters. That is |
a structure that contains data for over fifteen thousand characters. That is |
| 753 |
why the traditional escape sequences such as \ed and \ew do not use Unicode |
why the traditional escape sequences such as \ed and \ew do not use Unicode |
| 754 |
properties in PCRE. |
properties in PCRE by default, though you can make them do so by setting the |
| 755 |
|
PCRE_UCP option for \fBpcre_compile()\fP or by starting the pattern with |
| 756 |
|
(*UCP). |
| 757 |
|
. |
| 758 |
|
. |
| 759 |
|
.\" HTML <a name="extraprops"></a> |
| 760 |
|
.SS PCRE's additional properties |
| 761 |
|
.rs |
| 762 |
|
.sp |
| 763 |
|
As well as the standard Unicode properties described in the previous |
| 764 |
|
section, PCRE supports four more that make it possible to convert traditional |
| 765 |
|
escape sequences such as \ew and \es and POSIX character classes to use Unicode |
| 766 |
|
properties. PCRE uses these non-standard, non-Perl properties internally when |
| 767 |
|
PCRE_UCP is set. They are: |
| 768 |
|
.sp |
| 769 |
|
Xan Any alphanumeric character |
| 770 |
|
Xps Any POSIX space character |
| 771 |
|
Xsp Any Perl space character |
| 772 |
|
Xwd Any Perl "word" character |
| 773 |
|
.sp |
| 774 |
|
Xan matches characters that have either the L (letter) or the N (number) |
| 775 |
|
property. Xps matches the characters tab, linefeed, vertical tab, formfeed, or |
| 776 |
|
carriage return, and any other character that has the Z (separator) property. |
| 777 |
|
Xsp is the same as Xps, except that vertical tab is excluded. Xwd matches the |
| 778 |
|
same characters as Xan, plus underscore. |
| 779 |
. |
. |
| 780 |
. |
. |
| 781 |
.\" HTML <a name="resetmatchstart"></a> |
.\" HTML <a name="resetmatchstart"></a> |
| 782 |
.SS "Resetting the match start" |
.SS "Resetting the match start" |
| 783 |
.rs |
.rs |
| 784 |
.sp |
.sp |
| 785 |
The escape sequence \eK, which is a Perl 5.10 feature, causes any previously |
The escape sequence \eK causes any previously matched characters not to be |
| 786 |
matched characters not to be included in the final matched sequence. For |
included in the final matched sequence. For example, the pattern: |
|
example, the pattern: |
|
| 787 |
.sp |
.sp |
| 788 |
foo\eKbar |
foo\eKbar |
| 789 |
.sp |
.sp |
| 806 |
.sp |
.sp |
| 807 |
matches "foobar", the first substring is still set to "foo". |
matches "foobar", the first substring is still set to "foo". |
| 808 |
.P |
.P |
| 809 |
Perl documents that the use of \eK within assertions is "not well defined". In |
Perl documents that the use of \eK within assertions is "not well defined". In |
| 810 |
PCRE, \eK is acted upon when it occurs inside positive assertions, but is |
PCRE, \eK is acted upon when it occurs inside positive assertions, but is |
| 811 |
ignored in negative assertions. |
ignored in negative assertions. |
| 812 |
. |
. |
| 813 |
. |
. |
| 833 |
\ez matches only at the end of the subject |
\ez matches only at the end of the subject |
| 834 |
\eG matches at the first matching position in the subject |
\eG matches at the first matching position in the subject |
| 835 |
.sp |
.sp |
| 836 |
These assertions may not appear in character classes (but note that \eb has a |
Inside a character class, \eb has a different meaning; it matches the backspace |
| 837 |
different meaning, namely the backspace character, inside a character class). |
character. If any other of these assertions appears in a character class, by |
| 838 |
|
default it matches the corresponding literal character (for example, \eB |
| 839 |
|
matches the letter B). However, if the PCRE_EXTRA option is set, an "invalid |
| 840 |
|
escape sequence" error is generated instead. |
| 841 |
.P |
.P |
| 842 |
A word boundary is a position in the subject string where the current character |
A word boundary is a position in the subject string where the current character |
| 843 |
and the previous character do not both match \ew or \eW (i.e. one matches |
and the previous character do not both match \ew or \eW (i.e. one matches |
| 844 |
\ew and the other matches \eW), or the start or end of the string if the |
\ew and the other matches \eW), or the start or end of the string if the |
| 845 |
first or last character matches \ew, respectively. Neither PCRE nor Perl has a |
first or last character matches \ew, respectively. In UTF-8 mode, the meanings |
| 846 |
separte "start of word" or "end of word" metasequence. However, whatever |
of \ew and \eW can be changed by setting the PCRE_UCP option. When this is |
| 847 |
follows \eb normally determines which it is. For example, the fragment |
done, it also affects \eb and \eB. Neither PCRE nor Perl has a separate "start |
| 848 |
\eba matches "a" at the start of a word. |
of word" or "end of word" metasequence. However, whatever follows \eb normally |
| 849 |
|
determines which it is. For example, the fragment \eba matches "a" at the start |
| 850 |
|
of a word. |
| 851 |
.P |
.P |
| 852 |
The \eA, \eZ, and \ez assertions differ from the traditional circumflex and |
The \eA, \eZ, and \ez assertions differ from the traditional circumflex and |
| 853 |
dollar (described in the next section) in that they only ever match at the very |
dollar (described in the next section) in that they only ever match at the very |
| 931 |
\eA it is always anchored, whether or not PCRE_MULTILINE is set. |
\eA it is always anchored, whether or not PCRE_MULTILINE is set. |
| 932 |
. |
. |
| 933 |
. |
. |
| 934 |
.SH "FULL STOP (PERIOD, DOT)" |
.\" HTML <a name="fullstopdot"></a> |
| 935 |
|
.SH "FULL STOP (PERIOD, DOT) AND \eN" |
| 936 |
.rs |
.rs |
| 937 |
.sp |
.sp |
| 938 |
Outside a character class, a dot in the pattern matches any one character in |
Outside a character class, a dot in the pattern matches any one character in |
| 954 |
The handling of dot is entirely independent of the handling of circumflex and |
The handling of dot is entirely independent of the handling of circumflex and |
| 955 |
dollar, the only relationship being that they both involve newlines. Dot has no |
dollar, the only relationship being that they both involve newlines. Dot has no |
| 956 |
special meaning in a character class. |
special meaning in a character class. |
| 957 |
|
.P |
| 958 |
|
The escape sequence \eN behaves like a dot, except that it is not affected by |
| 959 |
|
the PCRE_DOTALL option. In other words, it matches any character except one |
| 960 |
|
that signifies the end of a line. |
| 961 |
. |
. |
| 962 |
. |
. |
| 963 |
.SH "MATCHING A SINGLE BYTE" |
.SH "MATCHING A SINGLE BYTE" |
| 966 |
Outside a character class, the escape sequence \eC matches any one byte, both |
Outside a character class, the escape sequence \eC matches any one byte, both |
| 967 |
in and out of UTF-8 mode. Unlike a dot, it always matches any line-ending |
in and out of UTF-8 mode. Unlike a dot, it always matches any line-ending |
| 968 |
characters. The feature is provided in Perl in order to match individual bytes |
characters. The feature is provided in Perl in order to match individual bytes |
| 969 |
in UTF-8 mode. Because it breaks up UTF-8 characters into individual bytes, |
in UTF-8 mode. Because it breaks up UTF-8 characters into individual bytes, the |
| 970 |
what remains in the string may be a malformed UTF-8 string. For this reason, |
rest of the string may start with a malformed UTF-8 character. For this reason, |
| 971 |
the \eC escape sequence is best avoided. |
the \eC escape sequence is best avoided. |
| 972 |
.P |
.P |
| 973 |
PCRE does not allow \eC to appear in lookbehind assertions |
PCRE does not allow \eC to appear in lookbehind assertions |
| 1052 |
characters with values greater than 128 only when it is compiled with Unicode |
characters with values greater than 128 only when it is compiled with Unicode |
| 1053 |
property support. |
property support. |
| 1054 |
.P |
.P |
| 1055 |
The character types \ed, \eD, \ep, \eP, \es, \eS, \ew, and \eW may also appear |
The character escape sequences \ed, \eD, \eh, \eH, \ep, \eP, \es, \eS, \ev, |
| 1056 |
in a character class, and add the characters that they match to the class. For |
\eV, \ew, and \eW may appear in a character class, and add the characters that |
| 1057 |
example, [\edABCDEF] matches any hexadecimal digit. A circumflex can |
they match to the class. For example, [\edABCDEF] matches any hexadecimal |
| 1058 |
conveniently be used with the upper case character types to specify a more |
digit. In UTF-8 mode, the PCRE_UCP option affects the meanings of \ed, \es, \ew |
| 1059 |
restricted set of characters than the matching lower case type. For example, |
and their upper case partners, just as it does when they appear outside a |
| 1060 |
the class [^\eW_] matches any letter or digit, but not underscore. |
character class, as described in the section entitled |
| 1061 |
|
.\" HTML <a href="#genericchartypes"> |
| 1062 |
|
.\" </a> |
| 1063 |
|
"Generic character types" |
| 1064 |
|
.\" |
| 1065 |
|
above. The escape sequence \eb has a different meaning inside a character |
| 1066 |
|
class; it matches the backspace character. The sequences \eB, \eN, \eR, and \eX |
| 1067 |
|
are not special inside a character class. Like any other unrecognized escape |
| 1068 |
|
sequences, they are treated as the literal characters "B", "N", "R", and "X" by |
| 1069 |
|
default, but cause an error if the PCRE_EXTRA option is set. |
| 1070 |
|
.P |
| 1071 |
|
A circumflex can conveniently be used with the upper case character types to |
| 1072 |
|
specify a more restricted set of characters than the matching lower case type. |
| 1073 |
|
For example, the class [^\eW_] matches any letter or digit, but not underscore, |
| 1074 |
|
whereas [\ew] includes underscore. A positive character class should be read as |
| 1075 |
|
"something OR something OR ..." and a negative class as "NOT something AND NOT |
| 1076 |
|
something AND NOT ...". |
| 1077 |
.P |
.P |
| 1078 |
The only metacharacters that are recognized in character classes are backslash, |
The only metacharacters that are recognized in character classes are backslash, |
| 1079 |
hyphen (only where it can be interpreted as specifying a range), circumflex |
hyphen (only where it can be interpreted as specifying a range), circumflex |
| 1093 |
[01[:alpha:]%] |
[01[:alpha:]%] |
| 1094 |
.sp |
.sp |
| 1095 |
matches "0", "1", any alphabetic character, or "%". The supported class names |
matches "0", "1", any alphabetic character, or "%". The supported class names |
| 1096 |
are |
are: |
| 1097 |
.sp |
.sp |
| 1098 |
alnum letters and digits |
alnum letters and digits |
| 1099 |
alpha letters |
alpha letters |
| 1104 |
graph printing characters, excluding space |
graph printing characters, excluding space |
| 1105 |
lower lower case letters |
lower lower case letters |
| 1106 |
print printing characters, including space |
print printing characters, including space |
| 1107 |
punct printing characters, excluding letters and digits |
punct printing characters, excluding letters and digits and space |
| 1108 |
space white space (not quite the same as \es) |
space white space (not quite the same as \es) |
| 1109 |
upper upper case letters |
upper upper case letters |
| 1110 |
word "word" characters (same as \ew) |
word "word" characters (same as \ew) |
| 1125 |
syntax [.ch.] and [=ch=] where "ch" is a "collating element", but these are not |
syntax [.ch.] and [=ch=] where "ch" is a "collating element", but these are not |
| 1126 |
supported, and an error is given if they are encountered. |
supported, and an error is given if they are encountered. |
| 1127 |
.P |
.P |
| 1128 |
In UTF-8 mode, characters with values greater than 128 do not match any of |
By default, in UTF-8 mode, characters with values greater than 128 do not match |
| 1129 |
the POSIX character classes. |
any of the POSIX character classes. However, if the PCRE_UCP option is passed |
| 1130 |
|
to \fBpcre_compile()\fP, some of the classes are changed so that Unicode |
| 1131 |
|
character properties are used. This is achieved by replacing the POSIX classes |
| 1132 |
|
by other sequences, as follows: |
| 1133 |
|
.sp |
| 1134 |
|
[:alnum:] becomes \ep{Xan} |
| 1135 |
|
[:alpha:] becomes \ep{L} |
| 1136 |
|
[:blank:] becomes \eh |
| 1137 |
|
[:digit:] becomes \ep{Nd} |
| 1138 |
|
[:lower:] becomes \ep{Ll} |
| 1139 |
|
[:space:] becomes \ep{Xps} |
| 1140 |
|
[:upper:] becomes \ep{Lu} |
| 1141 |
|
[:word:] becomes \ep{Xwd} |
| 1142 |
|
.sp |
| 1143 |
|
Negated versions, such as [:^alpha:] use \eP instead of \ep. The other POSIX |
| 1144 |
|
classes are unchanged, and match only characters with code points less than |
| 1145 |
|
128. |
| 1146 |
. |
. |
| 1147 |
. |
. |
| 1148 |
.SH "VERTICAL BAR" |
.SH "VERTICAL BAR" |
| 1196 |
extracted by the \fBpcre_fullinfo()\fP function). |
extracted by the \fBpcre_fullinfo()\fP function). |
| 1197 |
.P |
.P |
| 1198 |
An option change within a subpattern (see below for a description of |
An option change within a subpattern (see below for a description of |
| 1199 |
subpatterns) affects only that part of the current pattern that follows it, so |
subpatterns) affects only that part of the subpattern that follows it, so |
| 1200 |
.sp |
.sp |
| 1201 |
(a(?i)b)c |
(a(?i)b)c |
| 1202 |
.sp |
.sp |
| 1221 |
.\" </a> |
.\" </a> |
| 1222 |
"Newline sequences" |
"Newline sequences" |
| 1223 |
.\" |
.\" |
| 1224 |
above. There is also the (*UTF8) leading sequence that can be used to set UTF-8 |
above. There are also the (*UTF8) and (*UCP) leading sequences that can be used |
| 1225 |
mode; this is equivalent to setting the PCRE_UTF8 option. |
to set UTF-8 and Unicode property modes; they are equivalent to setting the |
| 1226 |
|
PCRE_UTF8 and the PCRE_UCP options, respectively. |
| 1227 |
. |
. |
| 1228 |
. |
. |
| 1229 |
.\" HTML <a name="subpattern"></a> |
.\" HTML <a name="subpattern"></a> |
| 1237 |
.sp |
.sp |
| 1238 |
cat(aract|erpillar|) |
cat(aract|erpillar|) |
| 1239 |
.sp |
.sp |
| 1240 |
matches one of the words "cat", "cataract", or "caterpillar". Without the |
matches "cataract", "caterpillar", or "cat". Without the parentheses, it would |
| 1241 |
parentheses, it would match "cataract", "erpillar" or an empty string. |
match "cataract", "erpillar" or an empty string. |
| 1242 |
.sp |
.sp |
| 1243 |
2. It sets up the subpattern as a capturing subpattern. This means that, when |
2. It sets up the subpattern as a capturing subpattern. This means that, when |
| 1244 |
the whole pattern matches, that portion of the subject string that matched the |
the whole pattern matches, that portion of the subject string that matched the |
| 1245 |
subpattern is passed back to the caller via the \fIovector\fP argument of |
subpattern is passed back to the caller via the \fIovector\fP argument of |
| 1246 |
\fBpcre_exec()\fP. Opening parentheses are counted from left to right (starting |
\fBpcre_exec()\fP. Opening parentheses are counted from left to right (starting |
| 1247 |
from 1) to obtain numbers for the capturing subpatterns. |
from 1) to obtain numbers for the capturing subpatterns. For example, if the |
| 1248 |
.P |
string "the red king" is matched against the pattern |
|
For example, if the string "the red king" is matched against the pattern |
|
| 1249 |
.sp |
.sp |
| 1250 |
the ((red|white) (king|queen)) |
the ((red|white) (king|queen)) |
| 1251 |
.sp |
.sp |
| 1294 |
is useful when you want to capture part, but not all, of one of a number of |
is useful when you want to capture part, but not all, of one of a number of |
| 1295 |
alternatives. Inside a (?| group, parentheses are numbered as usual, but the |
alternatives. Inside a (?| group, parentheses are numbered as usual, but the |
| 1296 |
number is reset at the start of each branch. The numbers of any capturing |
number is reset at the start of each branch. The numbers of any capturing |
| 1297 |
buffers that follow the subpattern start after the highest number used in any |
parentheses that follow the subpattern start after the highest number used in |
| 1298 |
branch. The following example is taken from the Perl documentation. |
any branch. The following example is taken from the Perl documentation. The |
| 1299 |
The numbers underneath show in which buffer the captured content will be |
numbers underneath show in which buffer the captured content will be stored. |
|
stored. |
|
| 1300 |
.sp |
.sp |
| 1301 |
# before ---------------branch-reset----------- after |
# before ---------------branch-reset----------- after |
| 1302 |
/ ( a ) (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x |
/ ( a ) (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x |
| 1423 |
the \eC escape sequence |
the \eC escape sequence |
| 1424 |
the \eX escape sequence (in UTF-8 mode with Unicode properties) |
the \eX escape sequence (in UTF-8 mode with Unicode properties) |
| 1425 |
the \eR escape sequence |
the \eR escape sequence |
| 1426 |
an escape such as \ed that matches a single character |
an escape such as \ed or \epL that matches a single character |
| 1427 |
a character class |
a character class |
| 1428 |
a back reference (see next section) |
a back reference (see next section) |
| 1429 |
a parenthesized subpattern (unless it is an assertion) |
a parenthesized subpattern (unless it is an assertion) |
| 1465 |
.\" </a> |
.\" </a> |
| 1466 |
subroutines |
subroutines |
| 1467 |
.\" |
.\" |
| 1468 |
from elsewhere in the pattern. Items other than subpatterns that have a {0} |
from elsewhere in the pattern (but see also the section entitled |
| 1469 |
quantifier are omitted from the compiled pattern. |
.\" HTML <a href="#subdefine"> |
| 1470 |
|
.\" </a> |
| 1471 |
|
"Defining subpatterns for use by reference only" |
| 1472 |
|
.\" |
| 1473 |
|
below). Items other than subpatterns that have a {0} quantifier are omitted |
| 1474 |
|
from the compiled pattern. |
| 1475 |
.P |
.P |
| 1476 |
For convenience, the three most common quantifiers have single-character |
For convenience, the three most common quantifiers have single-character |
| 1477 |
abbreviations: |
abbreviations: |
| 1696 |
subpattern is possible using named parentheses (see below). |
subpattern is possible using named parentheses (see below). |
| 1697 |
.P |
.P |
| 1698 |
Another way of avoiding the ambiguity inherent in the use of digits following a |
Another way of avoiding the ambiguity inherent in the use of digits following a |
| 1699 |
backslash is to use the \eg escape sequence, which is a feature introduced in |
backslash is to use the \eg escape sequence. This escape must be followed by an |
| 1700 |
Perl 5.10. This escape must be followed by an unsigned number or a negative |
unsigned number or a negative number, optionally enclosed in braces. These |
| 1701 |
number, optionally enclosed in braces. These examples are all identical: |
examples are all identical: |
| 1702 |
.sp |
.sp |
| 1703 |
(ring), \e1 |
(ring), \e1 |
| 1704 |
(ring), \eg1 |
(ring), \eg1 |
| 1712 |
(abc(def)ghi)\eg{-1} |
(abc(def)ghi)\eg{-1} |
| 1713 |
.sp |
.sp |
| 1714 |
The sequence \eg{-1} is a reference to the most recently started capturing |
The sequence \eg{-1} is a reference to the most recently started capturing |
| 1715 |
subpattern before \eg, that is, is it equivalent to \e2. Similarly, \eg{-2} |
subpattern before \eg, that is, is it equivalent to \e2 in this example. |
| 1716 |
would be equivalent to \e1. The use of relative references can be helpful in |
Similarly, \eg{-2} would be equivalent to \e1. The use of relative references |
| 1717 |
long patterns, and also in patterns that are created by joining together |
can be helpful in long patterns, and also in patterns that are created by |
| 1718 |
fragments that contain references within themselves. |
joining together fragments that contain references within themselves. |
| 1719 |
.P |
.P |
| 1720 |
A back reference matches whatever actually matched the capturing subpattern in |
A back reference matches whatever actually matched the capturing subpattern in |
| 1721 |
the current subject string, rather than anything matching the subpattern |
the current subject string, rather than anything matching the subpattern |
| 1851 |
If you want to force a matching failure at some point in a pattern, the most |
If you want to force a matching failure at some point in a pattern, the most |
| 1852 |
convenient way to do it is with (?!) because an empty string always matches, so |
convenient way to do it is with (?!) because an empty string always matches, so |
| 1853 |
an assertion that requires there not to be an empty string must always fail. |
an assertion that requires there not to be an empty string must always fail. |
| 1854 |
The Perl 5.10 backtracking control verb (*FAIL) or (*F) is essentially a |
The backtracking control verb (*FAIL) or (*F) is a synonym for (?!). |
|
synonym for (?!). |
|
| 1855 |
. |
. |
| 1856 |
. |
. |
| 1857 |
.\" HTML <a name="lookbehind"></a> |
.\" HTML <a name="lookbehind"></a> |
| 1876 |
.sp |
.sp |
| 1877 |
causes an error at compile time. Branches that match different length strings |
causes an error at compile time. Branches that match different length strings |
| 1878 |
are permitted only at the top level of a lookbehind assertion. This is an |
are permitted only at the top level of a lookbehind assertion. This is an |
| 1879 |
extension compared with Perl (5.8 and 5.10), which requires all branches to |
extension compared with Perl, which requires all branches to match the same |
| 1880 |
match the same length of string. An assertion such as |
length of string. An assertion such as |
| 1881 |
.sp |
.sp |
| 1882 |
(?<=ab(c|de)) |
(?<=ab(c|de)) |
| 1883 |
.sp |
.sp |
| 1887 |
.sp |
.sp |
| 1888 |
(?<=abc|abde) |
(?<=abc|abde) |
| 1889 |
.sp |
.sp |
| 1890 |
In some cases, the Perl 5.10 escape sequence \eK |
In some cases, the escape sequence \eK |
| 1891 |
.\" HTML <a href="#resetmatchstart"> |
.\" HTML <a href="#resetmatchstart"> |
| 1892 |
.\" </a> |
.\" </a> |
| 1893 |
(see above) |
(see above) |
| 1991 |
.sp |
.sp |
| 1992 |
If the condition is satisfied, the yes-pattern is used; otherwise the |
If the condition is satisfied, the yes-pattern is used; otherwise the |
| 1993 |
no-pattern (if present) is used. If there are more than two alternatives in the |
no-pattern (if present) is used. If there are more than two alternatives in the |
| 1994 |
subpattern, a compile-time error occurs. |
subpattern, a compile-time error occurs. Each of the two alternatives may |
| 1995 |
|
itself contain nested subpatterns of any form, including conditional |
| 1996 |
|
subpatterns; the restriction to two alternatives applies only at the level of |
| 1997 |
|
the condition. This pattern fragment is an example where the alternatives are |
| 1998 |
|
complex: |
| 1999 |
|
.sp |
| 2000 |
|
(?(1) (A|B|C) | (D | (?(2)E|F) | E) ) |
| 2001 |
|
.sp |
| 2002 |
.P |
.P |
| 2003 |
There are four kinds of condition: references to subpatterns, references to |
There are four kinds of condition: references to subpatterns, references to |
| 2004 |
recursion, a pseudo-condition called DEFINE, and assertions. |
recursion, a pseudo-condition called DEFINE, and assertions. |
| 2015 |
.\" </a> |
.\" </a> |
| 2016 |
section about duplicate subpattern numbers), |
section about duplicate subpattern numbers), |
| 2017 |
.\" |
.\" |
| 2018 |
the condition is true if any of them have been set. An alternative notation is |
the condition is true if any of them have matched. An alternative notation is |
| 2019 |
to precede the digits with a plus or minus sign. In this case, the subpattern |
to precede the digits with a plus or minus sign. In this case, the subpattern |
| 2020 |
number is relative rather than absolute. The most recently opened parentheses |
number is relative rather than absolute. The most recently opened parentheses |
| 2021 |
can be referenced by (?(-1), the next most recent by (?(-2), and so on. In |
can be referenced by (?(-1), the next most recent by (?(-2), and so on. Inside |
| 2022 |
looping constructs it can also make sense to refer to subsequent groups with |
loops it can also make sense to refer to subsequent groups. The next |
| 2023 |
constructs such as (?(+2). |
parentheses to be opened can be referenced as (?(+1), and so on. (The value |
| 2024 |
|
zero in any of these forms is not used; it provokes a compile-time error.) |
| 2025 |
.P |
.P |
| 2026 |
Consider the following pattern, which contains non-significant white space to |
Consider the following pattern, which contains non-significant white space to |
| 2027 |
make it more readable (assume the PCRE_EXTENDED option) and to divide it into |
make it more readable (assume the PCRE_EXTENDED option) and to divide it into |
| 2032 |
The first part matches an optional opening parenthesis, and if that |
The first part matches an optional opening parenthesis, and if that |
| 2033 |
character is present, sets it as the first captured substring. The second part |
character is present, sets it as the first captured substring. The second part |
| 2034 |
matches one or more characters that are not parentheses. The third part is a |
matches one or more characters that are not parentheses. The third part is a |
| 2035 |
conditional subpattern that tests whether the first set of parentheses matched |
conditional subpattern that tests whether or not the first set of parentheses |
| 2036 |
or not. If they did, that is, if subject started with an opening parenthesis, |
matched. If they did, that is, if subject started with an opening parenthesis, |
| 2037 |
the condition is true, and so the yes-pattern is executed and a closing |
the condition is true, and so the yes-pattern is executed and a closing |
| 2038 |
parenthesis is required. Otherwise, since no-pattern is not present, the |
parenthesis is required. Otherwise, since no-pattern is not present, the |
| 2039 |
subpattern matches nothing. In other words, this pattern matches a sequence of |
subpattern matches nothing. In other words, this pattern matches a sequence of |
| 2089 |
.\" |
.\" |
| 2090 |
is described below. |
is described below. |
| 2091 |
. |
. |
| 2092 |
|
.\" HTML <a name="subdefine"></a> |
| 2093 |
.SS "Defining subpatterns for use by reference only" |
.SS "Defining subpatterns for use by reference only" |
| 2094 |
.rs |
.rs |
| 2095 |
.sp |
.sp |
| 2102 |
.\" </a> |
.\" </a> |
| 2103 |
"subroutines" |
"subroutines" |
| 2104 |
.\" |
.\" |
| 2105 |
is described below.) For example, a pattern to match an IPv4 address could be |
is described below.) For example, a pattern to match an IPv4 address such as |
| 2106 |
written like this (ignore whitespace and line breaks): |
"192.168.23.245" could be written like this (ignore whitespace and line |
| 2107 |
|
breaks): |
| 2108 |
.sp |
.sp |
| 2109 |
(?(DEFINE) (?<byte> 2[0-4]\ed | 25[0-5] | 1\ed\ed | [1-9]?\ed) ) |
(?(DEFINE) (?<byte> 2[0-4]\ed | 25[0-5] | 1\ed\ed | [1-9]?\ed) ) |
| 2110 |
\eb (?&byte) (\e.(?&byte)){3} \eb |
\eb (?&byte) (\e.(?&byte)){3} \eb |
| 2139 |
.SH COMMENTS |
.SH COMMENTS |
| 2140 |
.rs |
.rs |
| 2141 |
.sp |
.sp |
| 2142 |
The sequence (?# marks the start of a comment that continues up to the next |
There are two ways of including comments in patterns that are processed by |
| 2143 |
closing parenthesis. Nested parentheses are not permitted. The characters |
PCRE. In both cases, the start of the comment must not be in a character class, |
| 2144 |
that make up a comment play no part in the pattern matching at all. |
nor in the middle of any other sequence of related characters such as (?: or a |
| 2145 |
|
subpattern name or number. The characters that make up a comment play no part |
| 2146 |
|
in the pattern matching. |
| 2147 |
.P |
.P |
| 2148 |
If the PCRE_EXTENDED option is set, an unescaped # character outside a |
The sequence (?# marks the start of a comment that continues up to the next |
| 2149 |
character class introduces a comment that continues to immediately after the |
closing parenthesis. Nested parentheses are not permitted. If the PCRE_EXTENDED |
| 2150 |
next newline in the pattern. |
option is set, an unescaped # character also introduces a comment, which in |
| 2151 |
|
this case continues to immediately after the next newline character or |
| 2152 |
|
character sequence in the pattern. Which characters are interpreted as newlines |
| 2153 |
|
is controlled by the options passed to \fBpcre_compile()\fP or by a special |
| 2154 |
|
sequence at the start of the pattern, as described in the section entitled |
| 2155 |
|
.\" HTML <a href="#newlines"> |
| 2156 |
|
.\" </a> |
| 2157 |
|
"Newline conventions" |
| 2158 |
|
.\" |
| 2159 |
|
above. Note that the end of this type of comment is a literal newline sequence |
| 2160 |
|
in the pattern; escape sequences that happen to represent a newline do not |
| 2161 |
|
count. For example, consider this pattern when PCRE_EXTENDED is set, and the |
| 2162 |
|
default newline convention is in force: |
| 2163 |
|
.sp |
| 2164 |
|
abc #comment \en still comment |
| 2165 |
|
.sp |
| 2166 |
|
On encountering the # character, \fBpcre_compile()\fP skips along, looking for |
| 2167 |
|
a newline in the pattern. The sequence \en is still literal at this stage, so |
| 2168 |
|
it does not terminate the comment. Only an actual character with the code value |
| 2169 |
|
0x0a (the default newline) does so. |
| 2170 |
. |
. |
| 2171 |
. |
. |
| 2172 |
.\" HTML <a name="recursion"></a> |
.\" HTML <a name="recursion"></a> |
| 2224 |
them instead of the whole pattern. |
them instead of the whole pattern. |
| 2225 |
.P |
.P |
| 2226 |
In a larger pattern, keeping track of parenthesis numbers can be tricky. This |
In a larger pattern, keeping track of parenthesis numbers can be tricky. This |
| 2227 |
is made easier by the use of relative references (a Perl 5.10 feature). |
is made easier by the use of relative references. Instead of (?1) in the |
| 2228 |
Instead of (?1) in the pattern above you can write (?-2) to refer to the second |
pattern above you can write (?-2) to refer to the second most recently opened |
| 2229 |
most recently opened parentheses preceding the recursion. In other words, a |
parentheses preceding the recursion. In other words, a negative number counts |
| 2230 |
negative number counts capturing parentheses leftwards from the point at which |
capturing parentheses leftwards from the point at which it is encountered. |
|
it is encountered. |
|
| 2231 |
.P |
.P |
| 2232 |
It is also possible to refer to subsequently opened parentheses, by writing |
It is also possible to refer to subsequently opened parentheses, by writing |
| 2233 |
references such as (?+2). However, these cannot be recursive because the |
references such as (?+2). However, these cannot be recursive because the |
| 2330 |
difference: in the previous case the remaining alternative is at a deeper |
difference: in the previous case the remaining alternative is at a deeper |
| 2331 |
recursion level, which PCRE cannot use. |
recursion level, which PCRE cannot use. |
| 2332 |
.P |
.P |
| 2333 |
To change the pattern so that matches all palindromic strings, not just those |
To change the pattern so that it matches all palindromic strings, not just |
| 2334 |
with an odd number of characters, it is tempting to change the pattern to this: |
those with an odd number of characters, it is tempting to change the pattern to |
| 2335 |
|
this: |
| 2336 |
.sp |
.sp |
| 2337 |
^((.)(?1)\e2|.?)$ |
^((.)(?1)\e2|.?)$ |
| 2338 |
.sp |
.sp |
| 2462 |
documentation. |
documentation. |
| 2463 |
. |
. |
| 2464 |
. |
. |
| 2465 |
|
.\" HTML <a name="backtrackcontrol"></a> |
| 2466 |
.SH "BACKTRACKING CONTROL" |
.SH "BACKTRACKING CONTROL" |
| 2467 |
.rs |
.rs |
| 2468 |
.sp |
.sp |
| 2484 |
processed as anchored at the point where they are tested. |
processed as anchored at the point where they are tested. |
| 2485 |
.P |
.P |
| 2486 |
The new verbs make use of what was previously invalid syntax: an opening |
The new verbs make use of what was previously invalid syntax: an opening |
| 2487 |
parenthesis followed by an asterisk. In Perl, they are generally of the form |
parenthesis followed by an asterisk. They are generally of the form |
| 2488 |
(*VERB:ARG) but PCRE does not support the use of arguments, so its general |
(*VERB) or (*VERB:NAME). Some may take either form, with differing behaviour, |
| 2489 |
form is just (*VERB). Any number of these verbs may occur in a pattern. There |
depending on whether or not an argument is present. An name is a sequence of |
| 2490 |
are two kinds: |
letters, digits, and underscores. If the name is empty, that is, if the closing |
| 2491 |
|
parenthesis immediately follows the colon, the effect is as if the colon were |
| 2492 |
|
not there. Any number of these verbs may occur in a pattern. |
| 2493 |
|
.P |
| 2494 |
|
PCRE contains some optimizations that are used to speed up matching by running |
| 2495 |
|
some checks at the start of each match attempt. For example, it may know the |
| 2496 |
|
minimum length of matching subject, or that a particular character must be |
| 2497 |
|
present. When one of these optimizations suppresses the running of a match, any |
| 2498 |
|
included backtracking verbs will not, of course, be processed. You can suppress |
| 2499 |
|
the start-of-match optimizations by setting the PCRE_NO_START_OPTIMIZE option |
| 2500 |
|
when calling \fBpcre_exec()\fP. |
| 2501 |
|
. |
| 2502 |
. |
. |
| 2503 |
.SS "Verbs that act immediately" |
.SS "Verbs that act immediately" |
| 2504 |
.rs |
.rs |
| 2505 |
.sp |
.sp |
| 2506 |
The following verbs act as soon as they are encountered: |
The following verbs act as soon as they are encountered. They may not be |
| 2507 |
|
followed by a name. |
| 2508 |
.sp |
.sp |
| 2509 |
(*ACCEPT) |
(*ACCEPT) |
| 2510 |
.sp |
.sp |
| 2531 |
A match with the string "aaaa" always fails, but the callout is taken before |
A match with the string "aaaa" always fails, but the callout is taken before |
| 2532 |
each backtrack happens (in this example, 10 times). |
each backtrack happens (in this example, 10 times). |
| 2533 |
. |
. |
| 2534 |
|
. |
| 2535 |
|
.SS "Recording which path was taken" |
| 2536 |
|
.rs |
| 2537 |
|
.sp |
| 2538 |
|
There is one verb whose main purpose is to track how a match was arrived at, |
| 2539 |
|
though it also has a secondary use in conjunction with advancing the match |
| 2540 |
|
starting point (see (*SKIP) below). |
| 2541 |
|
.sp |
| 2542 |
|
(*MARK:NAME) or (*:NAME) |
| 2543 |
|
.sp |
| 2544 |
|
A name is always required with this verb. There may be as many instances of |
| 2545 |
|
(*MARK) as you like in a pattern, and their names do not have to be unique. |
| 2546 |
|
.P |
| 2547 |
|
When a match succeeds, the name of the last-encountered (*MARK) is passed back |
| 2548 |
|
to the caller via the \fIpcre_extra\fP data structure, as described in the |
| 2549 |
|
.\" HTML <a href="pcreapi.html#extradata"> |
| 2550 |
|
.\" </a> |
| 2551 |
|
section on \fIpcre_extra\fP |
| 2552 |
|
.\" |
| 2553 |
|
in the |
| 2554 |
|
.\" HREF |
| 2555 |
|
\fBpcreapi\fP |
| 2556 |
|
.\" |
| 2557 |
|
documentation. No data is returned for a partial match. Here is an example of |
| 2558 |
|
\fBpcretest\fP output, where the /K modifier requests the retrieval and |
| 2559 |
|
outputting of (*MARK) data: |
| 2560 |
|
.sp |
| 2561 |
|
/X(*MARK:A)Y|X(*MARK:B)Z/K |
| 2562 |
|
XY |
| 2563 |
|
0: XY |
| 2564 |
|
MK: A |
| 2565 |
|
XZ |
| 2566 |
|
0: XZ |
| 2567 |
|
MK: B |
| 2568 |
|
.sp |
| 2569 |
|
The (*MARK) name is tagged with "MK:" in this output, and in this example it |
| 2570 |
|
indicates which of the two alternatives matched. This is a more efficient way |
| 2571 |
|
of obtaining this information than putting each alternative in its own |
| 2572 |
|
capturing parentheses. |
| 2573 |
|
.P |
| 2574 |
|
A name may also be returned after a failed match if the final path through the |
| 2575 |
|
pattern involves (*MARK). However, unless (*MARK) used in conjunction with |
| 2576 |
|
(*COMMIT), this is unlikely to happen for an unanchored pattern because, as the |
| 2577 |
|
starting point for matching is advanced, the final check is often with an empty |
| 2578 |
|
string, causing a failure before (*MARK) is reached. For example: |
| 2579 |
|
.sp |
| 2580 |
|
/X(*MARK:A)Y|X(*MARK:B)Z/K |
| 2581 |
|
XP |
| 2582 |
|
No match |
| 2583 |
|
.sp |
| 2584 |
|
There are three potential starting points for this match (starting with X, |
| 2585 |
|
starting with P, and with an empty string). If the pattern is anchored, the |
| 2586 |
|
result is different: |
| 2587 |
|
.sp |
| 2588 |
|
/^X(*MARK:A)Y|^X(*MARK:B)Z/K |
| 2589 |
|
XP |
| 2590 |
|
No match, mark = B |
| 2591 |
|
.sp |
| 2592 |
|
PCRE's start-of-match optimizations can also interfere with this. For example, |
| 2593 |
|
if, as a result of a call to \fBpcre_study()\fP, it knows the minimum |
| 2594 |
|
subject length for a match, a shorter subject will not be scanned at all. |
| 2595 |
|
.P |
| 2596 |
|
Note that similar anomalies (though different in detail) exist in Perl, no |
| 2597 |
|
doubt for the same reasons. The use of (*MARK) data after a failed match of an |
| 2598 |
|
unanchored pattern is not recommended, unless (*COMMIT) is involved. |
| 2599 |
|
. |
| 2600 |
|
. |
| 2601 |
.SS "Verbs that act after backtracking" |
.SS "Verbs that act after backtracking" |
| 2602 |
.rs |
.rs |
| 2603 |
.sp |
.sp |
| 2604 |
The following verbs do nothing when they are encountered. Matching continues |
The following verbs do nothing when they are encountered. Matching continues |
| 2605 |
with what follows, but if there is no subsequent match, a failure is forced. |
with what follows, but if there is no subsequent match, causing a backtrack to |
| 2606 |
The verbs differ in exactly what kind of failure occurs. |
the verb, a failure is forced. That is, backtracking cannot pass to the left of |
| 2607 |
|
the verb. However, when one of these verbs appears inside an atomic group, its |
| 2608 |
|
effect is confined to that group, because once the group has been matched, |
| 2609 |
|
there is never any backtracking into it. In this situation, backtracking can |
| 2610 |
|
"jump back" to the left of the entire atomic group. (Remember also, as stated |
| 2611 |
|
above, that this localization also applies in subroutine calls and assertions.) |
| 2612 |
|
.P |
| 2613 |
|
These verbs differ in exactly what kind of failure occurs when backtracking |
| 2614 |
|
reaches them. |
| 2615 |
.sp |
.sp |
| 2616 |
(*COMMIT) |
(*COMMIT) |
| 2617 |
.sp |
.sp |
| 2618 |
This verb causes the whole match to fail outright if the rest of the pattern |
This verb, which may not be followed by a name, causes the whole match to fail |
| 2619 |
does not match. Even if the pattern is unanchored, no further attempts to find |
outright if the rest of the pattern does not match. Even if the pattern is |
| 2620 |
a match by advancing the starting point take place. Once (*COMMIT) has been |
unanchored, no further attempts to find a match by advancing the starting point |
| 2621 |
passed, \fBpcre_exec()\fP is committed to finding a match at the current |
take place. Once (*COMMIT) has been passed, \fBpcre_exec()\fP is committed to |
| 2622 |
starting point, or not at all. For example: |
finding a match at the current starting point, or not at all. For example: |
| 2623 |
.sp |
.sp |
| 2624 |
a+(*COMMIT)b |
a+(*COMMIT)b |
| 2625 |
.sp |
.sp |
| 2626 |
This matches "xxaab" but not "aacaab". It can be thought of as a kind of |
This matches "xxaab" but not "aacaab". It can be thought of as a kind of |
| 2627 |
dynamic anchor, or "I've started, so I must finish." |
dynamic anchor, or "I've started, so I must finish." The name of the most |
| 2628 |
.sp |
recently passed (*MARK) in the path is passed back when (*COMMIT) forces a |
| 2629 |
(*PRUNE) |
match failure. |
| 2630 |
.sp |
.P |
| 2631 |
This verb causes the match to fail at the current position if the rest of the |
Note that (*COMMIT) at the start of a pattern is not the same as an anchor, |
| 2632 |
pattern does not match. If the pattern is unanchored, the normal "bumpalong" |
unless PCRE's start-of-match optimizations are turned off, as shown in this |
| 2633 |
advance to the next starting character then happens. Backtracking can occur as |
\fBpcretest\fP example: |
| 2634 |
usual to the left of (*PRUNE), or when matching to the right of (*PRUNE), but |
.sp |
| 2635 |
if there is no match to the right, backtracking cannot cross (*PRUNE). |
/(*COMMIT)abc/ |
| 2636 |
In simple cases, the use of (*PRUNE) is just an alternative to an atomic |
xyzabc |
| 2637 |
group or possessive quantifier, but there are some uses of (*PRUNE) that cannot |
0: abc |
| 2638 |
be expressed in any other way. |
xyzabc\eY |
| 2639 |
|
No match |
| 2640 |
|
.sp |
| 2641 |
|
PCRE knows that any match must start with "a", so the optimization skips along |
| 2642 |
|
the subject to "a" before running the first match attempt, which succeeds. When |
| 2643 |
|
the optimization is disabled by the \eY escape in the second subject, the match |
| 2644 |
|
starts at "x" and so the (*COMMIT) causes it to fail without trying any other |
| 2645 |
|
starting points. |
| 2646 |
|
.sp |
| 2647 |
|
(*PRUNE) or (*PRUNE:NAME) |
| 2648 |
|
.sp |
| 2649 |
|
This verb causes the match to fail at the current starting position in the |
| 2650 |
|
subject if the rest of the pattern does not match. If the pattern is |
| 2651 |
|
unanchored, the normal "bumpalong" advance to the next starting character then |
| 2652 |
|
happens. Backtracking can occur as usual to the left of (*PRUNE), before it is |
| 2653 |
|
reached, or when matching to the right of (*PRUNE), but if there is no match to |
| 2654 |
|
the right, backtracking cannot cross (*PRUNE). In simple cases, the use of |
| 2655 |
|
(*PRUNE) is just an alternative to an atomic group or possessive quantifier, |
| 2656 |
|
but there are some uses of (*PRUNE) that cannot be expressed in any other way. |
| 2657 |
|
The behaviour of (*PRUNE:NAME) is the same as (*MARK:NAME)(*PRUNE) when the |
| 2658 |
|
match fails completely; the name is passed back if this is the final attempt. |
| 2659 |
|
(*PRUNE:NAME) does not pass back a name if the match succeeds. In an anchored |
| 2660 |
|
pattern (*PRUNE) has the same effect as (*COMMIT). |
| 2661 |
.sp |
.sp |
| 2662 |
(*SKIP) |
(*SKIP) |
| 2663 |
.sp |
.sp |
| 2664 |
This verb is like (*PRUNE), except that if the pattern is unanchored, the |
This verb, when given without a name, is like (*PRUNE), except that if the |
| 2665 |
"bumpalong" advance is not to the next character, but to the position in the |
pattern is unanchored, the "bumpalong" advance is not to the next character, |
| 2666 |
subject where (*SKIP) was encountered. (*SKIP) signifies that whatever text |
but to the position in the subject where (*SKIP) was encountered. (*SKIP) |
| 2667 |
was matched leading up to it cannot be part of a successful match. Consider: |
signifies that whatever text was matched leading up to it cannot be part of a |
| 2668 |
|
successful match. Consider: |
| 2669 |
.sp |
.sp |
| 2670 |
a+(*SKIP)b |
a+(*SKIP)b |
| 2671 |
.sp |
.sp |
| 2676 |
first match attempt, the second attempt would start at the second character |
first match attempt, the second attempt would start at the second character |
| 2677 |
instead of skipping on to "c". |
instead of skipping on to "c". |
| 2678 |
.sp |
.sp |
| 2679 |
(*THEN) |
(*SKIP:NAME) |
| 2680 |
.sp |
.sp |
| 2681 |
This verb causes a skip to the next alternation if the rest of the pattern does |
When (*SKIP) has an associated name, its behaviour is modified. If the |
| 2682 |
not match. That is, it cancels pending backtracking, but only within the |
following pattern fails to match, the previous path through the pattern is |
| 2683 |
current alternation. Its name comes from the observation that it can be used |
searched for the most recent (*MARK) that has the same name. If one is found, |
| 2684 |
for a pattern-based if-then-else block: |
the "bumpalong" advance is to the subject position that corresponds to that |
| 2685 |
|
(*MARK) instead of to where (*SKIP) was encountered. If no (*MARK) with a |
| 2686 |
|
matching name is found, normal "bumpalong" of one character happens (the |
| 2687 |
|
(*SKIP) is ignored). |
| 2688 |
|
.sp |
| 2689 |
|
(*THEN) or (*THEN:NAME) |
| 2690 |
|
.sp |
| 2691 |
|
This verb causes a skip to the next alternation in the innermost enclosing |
| 2692 |
|
group if the rest of the pattern does not match. That is, it cancels pending |
| 2693 |
|
backtracking, but only within the current alternation. Its name comes from the |
| 2694 |
|
observation that it can be used for a pattern-based if-then-else block: |
| 2695 |
.sp |
.sp |
| 2696 |
( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ... |
( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ... |
| 2697 |
.sp |
.sp |
| 2698 |
If the COND1 pattern matches, FOO is tried (and possibly further items after |
If the COND1 pattern matches, FOO is tried (and possibly further items after |
| 2699 |
the end of the group if FOO succeeds); on failure the matcher skips to the |
the end of the group if FOO succeeds); on failure the matcher skips to the |
| 2700 |
second alternative and tries COND2, without backtracking into COND1. If (*THEN) |
second alternative and tries COND2, without backtracking into COND1. The |
| 2701 |
is used outside of any alternation, it acts exactly like (*PRUNE). |
behaviour of (*THEN:NAME) is exactly the same as (*MARK:NAME)(*THEN) if the |
| 2702 |
|
overall match fails. If (*THEN) is not directly inside an alternation, it acts |
| 2703 |
|
like (*PRUNE). |
| 2704 |
|
. |
| 2705 |
|
.P |
| 2706 |
|
The above verbs provide four different "strengths" of control when subsequent |
| 2707 |
|
matching fails. (*THEN) is the weakest, carrying on the match at the next |
| 2708 |
|
alternation. (*PRUNE) comes next, failing the match at the current starting |
| 2709 |
|
position, but allowing an advance to the next character (for an unanchored |
| 2710 |
|
pattern). (*SKIP) is similar, except that the advance may be more than one |
| 2711 |
|
character. (*COMMIT) is the strongest, causing the entire match to fail. |
| 2712 |
|
.P |
| 2713 |
|
If more than one is present in a pattern, the "stongest" one wins. For example, |
| 2714 |
|
consider this pattern, where A, B, etc. are complex pattern fragments: |
| 2715 |
|
.sp |
| 2716 |
|
(A(*COMMIT)B(*THEN)C|D) |
| 2717 |
|
.sp |
| 2718 |
|
Once A has matched, PCRE is committed to this match, at the current starting |
| 2719 |
|
position. If subsequently B matches, but C does not, the normal (*THEN) action |
| 2720 |
|
of trying the next alternation (that is, D) does not happen because (*COMMIT) |
| 2721 |
|
overrides. |
| 2722 |
. |
. |
| 2723 |
. |
. |
| 2724 |
.SH "SEE ALSO" |
.SH "SEE ALSO" |
| 2742 |
.rs |
.rs |
| 2743 |
.sp |
.sp |
| 2744 |
.nf |
.nf |
| 2745 |
Last updated: 06 March 2010 |
Last updated: 21 November 2010 |
| 2746 |
Copyright (c) 1997-2010 University of Cambridge. |
Copyright (c) 1997-2010 University of Cambridge. |
| 2747 |
.fi |
.fi |