| 4 |
.SH "PCRE REGULAR EXPRESSION DETAILS" |
.SH "PCRE REGULAR EXPRESSION DETAILS" |
| 5 |
.rs |
.rs |
| 6 |
.sp |
.sp |
| 7 |
The syntax and semantics of the regular expressions supported by PCRE are |
The syntax and semantics of the regular expressions that are supported by PCRE |
| 8 |
described below. Regular expressions are also described in the Perl |
are described in detail below. There is a quick-reference syntax summary in the |
| 9 |
documentation and in a number of books, some of which have copious examples. |
.\" HREF |
| 10 |
Jeffrey Friedl's "Mastering Regular Expressions", published by O'Reilly, covers |
\fBpcresyntax\fP |
| 11 |
regular expressions in great detail. This description of PCRE's regular |
.\" |
| 12 |
expressions is intended as reference material. |
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 |
.P |
| 23 |
The original operation of PCRE was on strings of one-byte characters. However, |
The original operation of PCRE was on strings of one-byte characters. However, |
| 24 |
there is now also support for UTF-8 character strings. To use this, you must |
there is now also support for UTF-8 character strings. To use this, you must |
| 25 |
build PCRE to include UTF-8 support, and then call \fBpcre_compile()\fP with |
build PCRE to include UTF-8 support, and then call \fBpcre_compile()\fP with |
| 26 |
the PCRE_UTF8 option. How this affects pattern matching is mentioned in several |
the PCRE_UTF8 option. There is also a special sequence that can be given at the |
| 27 |
places below. There is also a summary of UTF-8 features in the |
start of a pattern: |
| 28 |
|
.sp |
| 29 |
|
(*UTF8) |
| 30 |
|
.sp |
| 31 |
|
Starting a pattern with this sequence is equivalent to setting the PCRE_UTF8 |
| 32 |
|
option. This feature is not Perl-compatible. How setting UTF-8 mode affects |
| 33 |
|
pattern matching is mentioned in several places below. There is also a summary |
| 34 |
|
of UTF-8 features in the |
| 35 |
.\" HTML <a href="pcre.html#utf8support"> |
.\" HTML <a href="pcre.html#utf8support"> |
| 36 |
.\" </a> |
.\" </a> |
| 37 |
section on UTF-8 support |
section on UTF-8 support |
| 46 |
PCRE when its main matching function, \fBpcre_exec()\fP, is used. |
PCRE when its main matching function, \fBpcre_exec()\fP, is used. |
| 47 |
From release 6.0, PCRE offers a second matching function, |
From release 6.0, PCRE offers a second matching function, |
| 48 |
\fBpcre_dfa_exec()\fP, which matches using a different algorithm that is not |
\fBpcre_dfa_exec()\fP, which matches using a different algorithm that is not |
| 49 |
Perl-compatible. The advantages and disadvantages of the alternative function, |
Perl-compatible. Some of the features discussed below are not available when |
| 50 |
and how it differs from the normal function, are discussed in the |
\fBpcre_dfa_exec()\fP is used. The advantages and disadvantages of the |
| 51 |
|
alternative function, and how it differs from the normal function, are |
| 52 |
|
discussed in the |
| 53 |
.\" HREF |
.\" HREF |
| 54 |
\fBpcrematching\fP |
\fBpcrematching\fP |
| 55 |
.\" |
.\" |
| 56 |
page. |
page. |
| 57 |
. |
. |
| 58 |
. |
. |
| 59 |
|
.SH "NEWLINE CONVENTIONS" |
| 60 |
|
.rs |
| 61 |
|
.sp |
| 62 |
|
PCRE supports five different conventions for indicating line breaks in |
| 63 |
|
strings: a single CR (carriage return) character, a single LF (linefeed) |
| 64 |
|
character, the two-character sequence CRLF, any of the three preceding, or any |
| 65 |
|
Unicode newline sequence. The |
| 66 |
|
.\" HREF |
| 67 |
|
\fBpcreapi\fP |
| 68 |
|
.\" |
| 69 |
|
page has |
| 70 |
|
.\" HTML <a href="pcreapi.html#newlines"> |
| 71 |
|
.\" </a> |
| 72 |
|
further discussion |
| 73 |
|
.\" |
| 74 |
|
about newlines, and shows how to set the newline convention in the |
| 75 |
|
\fIoptions\fP arguments for the compiling and matching functions. |
| 76 |
|
.P |
| 77 |
|
It is also possible to specify a newline convention by starting a pattern |
| 78 |
|
string with one of the following five sequences: |
| 79 |
|
.sp |
| 80 |
|
(*CR) carriage return |
| 81 |
|
(*LF) linefeed |
| 82 |
|
(*CRLF) carriage return, followed by linefeed |
| 83 |
|
(*ANYCRLF) any of the three above |
| 84 |
|
(*ANY) all Unicode newline sequences |
| 85 |
|
.sp |
| 86 |
|
These override the default and the options given to \fBpcre_compile()\fP. For |
| 87 |
|
example, on a Unix system where LF is the default newline sequence, the pattern |
| 88 |
|
.sp |
| 89 |
|
(*CR)a.b |
| 90 |
|
.sp |
| 91 |
|
changes the convention to CR. That pattern matches "a\enb" because LF is no |
| 92 |
|
longer a newline. Note that these special settings, which are not |
| 93 |
|
Perl-compatible, are recognized only at the very start of a pattern, and that |
| 94 |
|
they must be in upper case. If more than one of them is present, the last one |
| 95 |
|
is used. |
| 96 |
|
.P |
| 97 |
|
The newline convention does not affect what the \eR escape sequence matches. By |
| 98 |
|
default, this is any Unicode newline sequence, for Perl compatibility. However, |
| 99 |
|
this can be changed; see the description of \eR in the section entitled |
| 100 |
|
.\" HTML <a href="#newlineseq"> |
| 101 |
|
.\" </a> |
| 102 |
|
"Newline sequences" |
| 103 |
|
.\" |
| 104 |
|
below. A change of \eR setting can be combined with a change of newline |
| 105 |
|
convention. |
| 106 |
|
. |
| 107 |
|
. |
| 108 |
.SH "CHARACTERS AND METACHARACTERS" |
.SH "CHARACTERS AND METACHARACTERS" |
| 109 |
.rs |
.rs |
| 110 |
.sp |
.sp |
| 214 |
\ecx "control-x", where x is any character |
\ecx "control-x", where x is any character |
| 215 |
\ee escape (hex 1B) |
\ee escape (hex 1B) |
| 216 |
\ef formfeed (hex 0C) |
\ef formfeed (hex 0C) |
| 217 |
\en newline (hex 0A) |
\en linefeed (hex 0A) |
| 218 |
\er carriage return (hex 0D) |
\er carriage return (hex 0D) |
| 219 |
\et tab (hex 09) |
\et tab (hex 09) |
| 220 |
\eddd character with octal code ddd, or backreference |
\eddd character with octal code ddd, or backreference |
| 229 |
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 |
| 230 |
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{ |
| 231 |
and }, but the value of the character code must be less than 256 in non-UTF-8 |
and }, but the value of the character code must be less than 256 in non-UTF-8 |
| 232 |
mode, and less than 2**31 in UTF-8 mode (that is, the maximum hexadecimal value |
mode, and less than 2**31 in UTF-8 mode. That is, the maximum value in |
| 233 |
is 7FFFFFFF). If characters other than hexadecimal digits appear between \ex{ |
hexadecimal is 7FFFFFFF. Note that this is bigger than the largest Unicode code |
| 234 |
and }, or if there is no terminating }, this form of escape is not recognized. |
point, which is 10FFFF. |
| 235 |
Instead, the initial \ex will be interpreted as a basic hexadecimal escape, |
.P |
| 236 |
with no following digits, giving a character whose value is zero. |
If characters other than hexadecimal digits appear between \ex{ and }, or if |
| 237 |
|
there is no terminating }, this form of escape is not recognized. Instead, the |
| 238 |
|
initial \ex will be interpreted as a basic hexadecimal escape, with no |
| 239 |
|
following digits, giving a character whose value is zero. |
| 240 |
.P |
.P |
| 241 |
Characters whose value is less than 256 can be defined by either of the two |
Characters whose value is less than 256 can be defined by either of the two |
| 242 |
syntaxes for \ex. There is no difference in the way they are handled. For |
syntaxes for \ex. There is no difference in the way they are handled. For |
| 308 |
.SS "Absolute and relative back references" |
.SS "Absolute and relative back references" |
| 309 |
.rs |
.rs |
| 310 |
.sp |
.sp |
| 311 |
The sequence \eg followed by a positive or negative number, optionally enclosed |
The sequence \eg followed by an unsigned or a negative number, optionally |
| 312 |
in braces, is an absolute or relative back reference. Back references are |
enclosed in braces, is an absolute or relative back reference. A named back |
| 313 |
discussed |
reference can be coded as \eg{name}. Back references are discussed |
| 314 |
.\" HTML <a href="#backreferences"> |
.\" HTML <a href="#backreferences"> |
| 315 |
.\" </a> |
.\" </a> |
| 316 |
later, |
later, |
| 322 |
.\" |
.\" |
| 323 |
. |
. |
| 324 |
. |
. |
| 325 |
|
.SS "Absolute and relative subroutine calls" |
| 326 |
|
.rs |
| 327 |
|
.sp |
| 328 |
|
For compatibility with Oniguruma, the non-Perl syntax \eg followed by a name or |
| 329 |
|
a number enclosed either in angle brackets or single quotes, is an alternative |
| 330 |
|
syntax for referencing a subpattern as a "subroutine". Details are discussed |
| 331 |
|
.\" HTML <a href="#onigurumasubroutines"> |
| 332 |
|
.\" </a> |
| 333 |
|
later. |
| 334 |
|
.\" |
| 335 |
|
Note that \eg{...} (Perl syntax) and \eg<...> (Oniguruma syntax) are \fInot\fP |
| 336 |
|
synonymous. The former is a back reference; the latter is a subroutine call. |
| 337 |
|
. |
| 338 |
|
. |
| 339 |
.SS "Generic character types" |
.SS "Generic character types" |
| 340 |
.rs |
.rs |
| 341 |
.sp |
.sp |
| 344 |
.sp |
.sp |
| 345 |
\ed any decimal digit |
\ed any decimal digit |
| 346 |
\eD any character that is not a decimal digit |
\eD any character that is not a decimal digit |
| 347 |
|
\eh any horizontal whitespace character |
| 348 |
|
\eH any character that is not a horizontal whitespace character |
| 349 |
\es any whitespace character |
\es any whitespace character |
| 350 |
\eS any character that is not a whitespace character |
\eS any character that is not a whitespace character |
| 351 |
|
\ev any vertical whitespace character |
| 352 |
|
\eV any character that is not a vertical whitespace character |
| 353 |
\ew any "word" character |
\ew any "word" character |
| 354 |
\eW any "non-word" character |
\eW any "non-word" character |
| 355 |
.sp |
.sp |
| 363 |
.P |
.P |
| 364 |
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). |
| 365 |
This makes it different from the the POSIX "space" class. The \es characters |
This makes it different from the the POSIX "space" class. The \es characters |
| 366 |
are HT (9), LF (10), FF (12), CR (13), and space (32). (If "use locale;" is |
are HT (9), LF (10), FF (12), CR (13), and space (32). If "use locale;" is |
| 367 |
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 |
| 368 |
does.) |
does. |
| 369 |
|
.P |
| 370 |
|
In UTF-8 mode, characters with values greater than 128 never match \ed, \es, or |
| 371 |
|
\ew, and always match \eD, \eS, and \eW. This is true even when Unicode |
| 372 |
|
character property support is available. These sequences retain their original |
| 373 |
|
meanings from before UTF-8 support was available, mainly for efficiency |
| 374 |
|
reasons. Note that this also affects \eb, because it is defined in terms of \ew |
| 375 |
|
and \eW. |
| 376 |
|
.P |
| 377 |
|
The sequences \eh, \eH, \ev, and \eV are Perl 5.10 features. In contrast to the |
| 378 |
|
other sequences, these do match certain high-valued codepoints in UTF-8 mode. |
| 379 |
|
The horizontal space characters are: |
| 380 |
|
.sp |
| 381 |
|
U+0009 Horizontal tab |
| 382 |
|
U+0020 Space |
| 383 |
|
U+00A0 Non-break space |
| 384 |
|
U+1680 Ogham space mark |
| 385 |
|
U+180E Mongolian vowel separator |
| 386 |
|
U+2000 En quad |
| 387 |
|
U+2001 Em quad |
| 388 |
|
U+2002 En space |
| 389 |
|
U+2003 Em space |
| 390 |
|
U+2004 Three-per-em space |
| 391 |
|
U+2005 Four-per-em space |
| 392 |
|
U+2006 Six-per-em space |
| 393 |
|
U+2007 Figure space |
| 394 |
|
U+2008 Punctuation space |
| 395 |
|
U+2009 Thin space |
| 396 |
|
U+200A Hair space |
| 397 |
|
U+202F Narrow no-break space |
| 398 |
|
U+205F Medium mathematical space |
| 399 |
|
U+3000 Ideographic space |
| 400 |
|
.sp |
| 401 |
|
The vertical space characters are: |
| 402 |
|
.sp |
| 403 |
|
U+000A Linefeed |
| 404 |
|
U+000B Vertical tab |
| 405 |
|
U+000C Formfeed |
| 406 |
|
U+000D Carriage return |
| 407 |
|
U+0085 Next line |
| 408 |
|
U+2028 Line separator |
| 409 |
|
U+2029 Paragraph separator |
| 410 |
.P |
.P |
| 411 |
A "word" character is an underscore or any character less than 256 that is a |
A "word" character is an underscore or any character less than 256 that is a |
| 412 |
letter or digit. The definition of letters and digits is controlled by PCRE's |
letter or digit. The definition of letters and digits is controlled by PCRE's |
| 420 |
.\" HREF |
.\" HREF |
| 421 |
\fBpcreapi\fP |
\fBpcreapi\fP |
| 422 |
.\" |
.\" |
| 423 |
page). For example, in the "fr_FR" (French) locale, some character codes |
page). For example, in a French locale such as "fr_FR" in Unix-like systems, |
| 424 |
greater than 128 are used for accented letters, and these are matched by \ew. |
or "french" in Windows, some character codes greater than 128 are used for |
| 425 |
.P |
accented letters, and these are matched by \ew. The use of locales with Unicode |
| 426 |
In UTF-8 mode, characters with values greater than 128 never match \ed, \es, or |
is discouraged. |
|
\ew, and always match \eD, \eS, and \eW. This is true even when Unicode |
|
|
character property support is available. The use of locales with Unicode is |
|
|
discouraged. |
|
| 427 |
. |
. |
| 428 |
. |
. |
| 429 |
|
.\" HTML <a name="newlineseq"></a> |
| 430 |
.SS "Newline sequences" |
.SS "Newline sequences" |
| 431 |
.rs |
.rs |
| 432 |
.sp |
.sp |
| 433 |
Outside a character class, the escape sequence \eR matches any Unicode newline |
Outside a character class, by default, the escape sequence \eR matches any |
| 434 |
sequence. This is an extension to Perl. In non-UTF-8 mode \eR is equivalent to |
Unicode newline sequence. This is a Perl 5.10 feature. In non-UTF-8 mode \eR is |
| 435 |
the following: |
equivalent to the following: |
| 436 |
.sp |
.sp |
| 437 |
(?>\er\en|\en|\ex0b|\ef|\er|\ex85) |
(?>\er\en|\en|\ex0b|\ef|\er|\ex85) |
| 438 |
.sp |
.sp |
| 452 |
Unicode character property support is not needed for these characters to be |
Unicode character property support is not needed for these characters to be |
| 453 |
recognized. |
recognized. |
| 454 |
.P |
.P |
| 455 |
|
It is possible to restrict \eR to match only CR, LF, or CRLF (instead of the |
| 456 |
|
complete set of Unicode line endings) by setting the option PCRE_BSR_ANYCRLF |
| 457 |
|
either at compile time or when the pattern is matched. (BSR is an abbrevation |
| 458 |
|
for "backslash R".) This can be made the default when PCRE is built; if this is |
| 459 |
|
the case, the other behaviour can be requested via the PCRE_BSR_UNICODE option. |
| 460 |
|
It is also possible to specify these settings by starting a pattern string with |
| 461 |
|
one of the following sequences: |
| 462 |
|
.sp |
| 463 |
|
(*BSR_ANYCRLF) CR, LF, or CRLF only |
| 464 |
|
(*BSR_UNICODE) any Unicode newline sequence |
| 465 |
|
.sp |
| 466 |
|
These override the default and the options given to \fBpcre_compile()\fP, but |
| 467 |
|
they can be overridden by options given to \fBpcre_exec()\fP. Note that these |
| 468 |
|
special settings, which are not Perl-compatible, are recognized only at the |
| 469 |
|
very start of a pattern, and that they must be in upper case. If more than one |
| 470 |
|
of them is present, the last one is used. They can be combined with a change of |
| 471 |
|
newline convention, for example, a pattern can start with: |
| 472 |
|
.sp |
| 473 |
|
(*ANY)(*BSR_ANYCRLF) |
| 474 |
|
.sp |
| 475 |
Inside a character class, \eR matches the letter "R". |
Inside a character class, \eR matches the letter "R". |
| 476 |
. |
. |
| 477 |
. |
. |
| 480 |
.rs |
.rs |
| 481 |
.sp |
.sp |
| 482 |
When PCRE is built with Unicode character property support, three additional |
When PCRE is built with Unicode character property support, three additional |
| 483 |
escape sequences to match character properties are available when UTF-8 mode |
escape sequences that match characters with specific properties are available. |
| 484 |
is selected. They are: |
When not in UTF-8 mode, these sequences are of course limited to testing |
| 485 |
|
characters whose codepoints are less than 256, but they do work in this mode. |
| 486 |
|
The extra escape sequences are: |
| 487 |
.sp |
.sp |
| 488 |
\ep{\fIxx\fP} a character with the \fIxx\fP property |
\ep{\fIxx\fP} a character with the \fIxx\fP property |
| 489 |
\eP{\fIxx\fP} a character without the \fIxx\fP property |
\eP{\fIxx\fP} a character without the \fIxx\fP property |
| 635 |
the Lu, Ll, or Lt property, in other words, a letter that is not classified as |
the Lu, Ll, or Lt property, in other words, a letter that is not classified as |
| 636 |
a modifier or "other". |
a modifier or "other". |
| 637 |
.P |
.P |
| 638 |
|
The Cs (Surrogate) property applies only to characters in the range U+D800 to |
| 639 |
|
U+DFFF. Such characters are not valid in UTF-8 strings (see RFC 3629) and so |
| 640 |
|
cannot be tested by PCRE, unless UTF-8 validity checking has been turned off |
| 641 |
|
(see the discussion of PCRE_NO_UTF8_CHECK in the |
| 642 |
|
.\" HREF |
| 643 |
|
\fBpcreapi\fP |
| 644 |
|
.\" |
| 645 |
|
page). |
| 646 |
|
.P |
| 647 |
The long synonyms for these properties that Perl supports (such as \ep{Letter}) |
The long synonyms for these properties that Perl supports (such as \ep{Letter}) |
| 648 |
are not supported by PCRE, nor is it permitted to prefix any of these |
are not supported by PCRE, nor is it permitted to prefix any of these |
| 649 |
properties with "Is". |
properties with "Is". |
| 668 |
(see below). |
(see below). |
| 669 |
.\" |
.\" |
| 670 |
Characters with the "mark" property are typically accents that affect the |
Characters with the "mark" property are typically accents that affect the |
| 671 |
preceding character. |
preceding character. None of them have codepoints less than 256, so in |
| 672 |
|
non-UTF-8 mode \eX matches any one character. |
| 673 |
.P |
.P |
| 674 |
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 |
| 675 |
a structure that contains data for over fifteen thousand characters. That is |
a structure that contains data for over fifteen thousand characters. That is |
| 677 |
properties in PCRE. |
properties in PCRE. |
| 678 |
. |
. |
| 679 |
. |
. |
| 680 |
|
.\" HTML <a name="resetmatchstart"></a> |
| 681 |
|
.SS "Resetting the match start" |
| 682 |
|
.rs |
| 683 |
|
.sp |
| 684 |
|
The escape sequence \eK, which is a Perl 5.10 feature, causes any previously |
| 685 |
|
matched characters not to be included in the final matched sequence. For |
| 686 |
|
example, the pattern: |
| 687 |
|
.sp |
| 688 |
|
foo\eKbar |
| 689 |
|
.sp |
| 690 |
|
matches "foobar", but reports that it has matched "bar". This feature is |
| 691 |
|
similar to a lookbehind assertion |
| 692 |
|
.\" HTML <a href="#lookbehind"> |
| 693 |
|
.\" </a> |
| 694 |
|
(described below). |
| 695 |
|
.\" |
| 696 |
|
However, in this case, the part of the subject before the real match does not |
| 697 |
|
have to be of fixed length, as lookbehind assertions do. The use of \eK does |
| 698 |
|
not interfere with the setting of |
| 699 |
|
.\" HTML <a href="#subpattern"> |
| 700 |
|
.\" </a> |
| 701 |
|
captured substrings. |
| 702 |
|
.\" |
| 703 |
|
For example, when the pattern |
| 704 |
|
.sp |
| 705 |
|
(foo)\eKbar |
| 706 |
|
.sp |
| 707 |
|
matches "foobar", the first substring is still set to "foo". |
| 708 |
|
. |
| 709 |
|
. |
| 710 |
.\" HTML <a name="smallassertions"></a> |
.\" HTML <a name="smallassertions"></a> |
| 711 |
.SS "Simple assertions" |
.SS "Simple assertions" |
| 712 |
.rs |
.rs |
| 929 |
If a range that includes letters is used when caseless matching is set, it |
If a range that includes letters is used when caseless matching is set, it |
| 930 |
matches the letters in either case. For example, [W-c] is equivalent to |
matches the letters in either case. For example, [W-c] is equivalent to |
| 931 |
[][\e\e^_`wxyzabc], matched caselessly, and in non-UTF-8 mode, if character |
[][\e\e^_`wxyzabc], matched caselessly, and in non-UTF-8 mode, if character |
| 932 |
tables for the "fr_FR" locale are in use, [\exc8-\excb] matches accented E |
tables for a French locale are in use, [\exc8-\excb] matches accented E |
| 933 |
characters in both cases. In UTF-8 mode, PCRE supports the concept of case for |
characters in both cases. In UTF-8 mode, PCRE supports the concept of case for |
| 934 |
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 |
| 935 |
property support. |
property support. |
| 1019 |
.rs |
.rs |
| 1020 |
.sp |
.sp |
| 1021 |
The settings of the PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and |
The settings of the PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and |
| 1022 |
PCRE_EXTENDED options can be changed from within the pattern by a sequence of |
PCRE_EXTENDED options (which are Perl-compatible) can be changed from within |
| 1023 |
Perl option letters enclosed between "(?" and ")". The option letters are |
the pattern by a sequence of Perl option letters enclosed between "(?" and ")". |
| 1024 |
|
The option letters are |
| 1025 |
.sp |
.sp |
| 1026 |
i for PCRE_CASELESS |
i for PCRE_CASELESS |
| 1027 |
m for PCRE_MULTILINE |
m for PCRE_MULTILINE |
| 1035 |
permitted. If a letter appears both before and after the hyphen, the option is |
permitted. If a letter appears both before and after the hyphen, the option is |
| 1036 |
unset. |
unset. |
| 1037 |
.P |
.P |
| 1038 |
When an option change occurs at top level (that is, not inside subpattern |
The PCRE-specific options PCRE_DUPNAMES, PCRE_UNGREEDY, and PCRE_EXTRA can be |
| 1039 |
parentheses), the change applies to the remainder of the pattern that follows. |
changed in the same way as the Perl-compatible options by using the characters |
| 1040 |
If the change is placed right at the start of a pattern, PCRE extracts it into |
J, U and X respectively. |
| 1041 |
the global options (and it will therefore show up in data extracted by the |
.P |
| 1042 |
\fBpcre_fullinfo()\fP function). |
When one of these option changes occurs at top level (that is, not inside |
| 1043 |
|
subpattern parentheses), the change applies to the remainder of the pattern |
| 1044 |
|
that follows. If the change is placed right at the start of a pattern, PCRE |
| 1045 |
|
extracts it into the global options (and it will therefore show up in data |
| 1046 |
|
extracted by the \fBpcre_fullinfo()\fP function). |
| 1047 |
.P |
.P |
| 1048 |
An option change within a subpattern (see below for a description of |
An option change within a subpattern (see below for a description of |
| 1049 |
subpatterns) affects only that part of the current pattern that follows it, so |
subpatterns) affects only that part of the current pattern that follows it, so |
| 1062 |
option settings happen at compile time. There would be some very weird |
option settings happen at compile time. There would be some very weird |
| 1063 |
behaviour otherwise. |
behaviour otherwise. |
| 1064 |
.P |
.P |
| 1065 |
The PCRE-specific options PCRE_DUPNAMES, PCRE_UNGREEDY, and PCRE_EXTRA can be |
\fBNote:\fP There are other PCRE-specific options that can be set by the |
| 1066 |
changed in the same way as the Perl-compatible options by using the characters |
application when the compile or match functions are called. In some cases the |
| 1067 |
J, U and X respectively. |
pattern can contain special leading sequences such as (*CRLF) to override what |
| 1068 |
|
the application has set or what has been defaulted. Details are given in the |
| 1069 |
|
section entitled |
| 1070 |
|
.\" HTML <a href="#newlineseq"> |
| 1071 |
|
.\" </a> |
| 1072 |
|
"Newline sequences" |
| 1073 |
|
.\" |
| 1074 |
|
above. There is also the (*UTF8) leading sequence that can be used to set UTF-8 |
| 1075 |
|
mode; this is equivalent to setting the PCRE_UTF8 option. |
| 1076 |
. |
. |
| 1077 |
. |
. |
| 1078 |
.\" HTML <a name="subpattern"></a> |
.\" HTML <a name="subpattern"></a> |
| 1127 |
the above patterns match "SUNDAY" as well as "Saturday". |
the above patterns match "SUNDAY" as well as "Saturday". |
| 1128 |
. |
. |
| 1129 |
. |
. |
| 1130 |
|
.SH "DUPLICATE SUBPATTERN NUMBERS" |
| 1131 |
|
.rs |
| 1132 |
|
.sp |
| 1133 |
|
Perl 5.10 introduced a feature whereby each alternative in a subpattern uses |
| 1134 |
|
the same numbers for its capturing parentheses. Such a subpattern starts with |
| 1135 |
|
(?| and is itself a non-capturing subpattern. For example, consider this |
| 1136 |
|
pattern: |
| 1137 |
|
.sp |
| 1138 |
|
(?|(Sat)ur|(Sun))day |
| 1139 |
|
.sp |
| 1140 |
|
Because the two alternatives are inside a (?| group, both sets of capturing |
| 1141 |
|
parentheses are numbered one. Thus, when the pattern matches, you can look |
| 1142 |
|
at captured substring number one, whichever alternative matched. This construct |
| 1143 |
|
is useful when you want to capture part, but not all, of one of a number of |
| 1144 |
|
alternatives. Inside a (?| group, parentheses are numbered as usual, but the |
| 1145 |
|
number is reset at the start of each branch. The numbers of any capturing |
| 1146 |
|
buffers that follow the subpattern start after the highest number used in any |
| 1147 |
|
branch. The following example is taken from the Perl documentation. |
| 1148 |
|
The numbers underneath show in which buffer the captured content will be |
| 1149 |
|
stored. |
| 1150 |
|
.sp |
| 1151 |
|
# before ---------------branch-reset----------- after |
| 1152 |
|
/ ( a ) (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x |
| 1153 |
|
# 1 2 2 3 2 3 4 |
| 1154 |
|
.sp |
| 1155 |
|
A backreference or a recursive call to a numbered subpattern always refers to |
| 1156 |
|
the first one in the pattern with the given number. |
| 1157 |
|
.P |
| 1158 |
|
An alternative approach to using this "branch reset" feature is to use |
| 1159 |
|
duplicate named subpatterns, as described in the next section. |
| 1160 |
|
. |
| 1161 |
|
. |
| 1162 |
.SH "NAMED SUBPATTERNS" |
.SH "NAMED SUBPATTERNS" |
| 1163 |
.rs |
.rs |
| 1164 |
.sp |
.sp |
| 1208 |
(?<DN>Sat)(?:urday)? |
(?<DN>Sat)(?:urday)? |
| 1209 |
.sp |
.sp |
| 1210 |
There are five capturing substrings, but only one is ever set after a match. |
There are five capturing substrings, but only one is ever set after a match. |
| 1211 |
|
(An alternative way of solving this problem is to use a "branch reset" |
| 1212 |
|
subpattern, as described in the previous section.) |
| 1213 |
|
.P |
| 1214 |
The convenience function for extracting the data by name returns the substring |
The convenience function for extracting the data by name returns the substring |
| 1215 |
for the first (and in this example, the only) subpattern of that name that |
for the first (and in this example, the only) subpattern of that name that |
| 1216 |
matched. This saves searching to find which numbered subpattern it was. If you |
matched. This saves searching to find which numbered subpattern it was. If you |
| 1221 |
\fBpcreapi\fP |
\fBpcreapi\fP |
| 1222 |
.\" |
.\" |
| 1223 |
documentation. |
documentation. |
| 1224 |
|
.P |
| 1225 |
|
\fBWarning:\fP You cannot use different names to distinguish between two |
| 1226 |
|
subpatterns with the same number (see the previous section) because PCRE uses |
| 1227 |
|
only the numbers when matching. |
| 1228 |
. |
. |
| 1229 |
. |
. |
| 1230 |
.SH REPETITION |
.SH REPETITION |
| 1273 |
which may be several bytes long (and they may be of different lengths). |
which may be several bytes long (and they may be of different lengths). |
| 1274 |
.P |
.P |
| 1275 |
The quantifier {0} is permitted, causing the expression to behave as if the |
The quantifier {0} is permitted, causing the expression to behave as if the |
| 1276 |
previous item and the quantifier were not present. |
previous item and the quantifier were not present. This may be useful for |
| 1277 |
|
subpatterns that are referenced as |
| 1278 |
|
.\" HTML <a href="#subpatternsassubroutines"> |
| 1279 |
|
.\" </a> |
| 1280 |
|
subroutines |
| 1281 |
|
.\" |
| 1282 |
|
from elsewhere in the pattern. Items other than subpatterns that have a {0} |
| 1283 |
|
quantifier are omitted from the compiled pattern. |
| 1284 |
.P |
.P |
| 1285 |
For convenience, the three most common quantifiers have single-character |
For convenience, the three most common quantifiers have single-character |
| 1286 |
abbreviations: |
abbreviations: |
| 1427 |
.sp |
.sp |
| 1428 |
\ed++foo |
\ed++foo |
| 1429 |
.sp |
.sp |
| 1430 |
|
Note that a possessive quantifier can be used with an entire group, for |
| 1431 |
|
example: |
| 1432 |
|
.sp |
| 1433 |
|
(abc|xyz){2,3}+ |
| 1434 |
|
.sp |
| 1435 |
Possessive quantifiers are always greedy; the setting of the PCRE_UNGREEDY |
Possessive quantifiers are always greedy; the setting of the PCRE_UNGREEDY |
| 1436 |
option is ignored. They are a convenient notation for the simpler forms of |
option is ignored. They are a convenient notation for the simpler forms of |
| 1437 |
atomic group. However, there is no difference in the meaning of a possessive |
atomic group. However, there is no difference in the meaning of a possessive |
| 1506 |
.P |
.P |
| 1507 |
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 |
| 1508 |
backslash is to use the \eg escape sequence, which is a feature introduced in |
backslash is to use the \eg escape sequence, which is a feature introduced in |
| 1509 |
Perl 5.10. This escape must be followed by a positive or a negative number, |
Perl 5.10. This escape must be followed by an unsigned number or a negative |
| 1510 |
optionally enclosed in braces. These examples are all identical: |
number, optionally enclosed in braces. These examples are all identical: |
| 1511 |
.sp |
.sp |
| 1512 |
(ring), \e1 |
(ring), \e1 |
| 1513 |
(ring), \eg1 |
(ring), \eg1 |
| 1514 |
(ring), \eg{1} |
(ring), \eg{1} |
| 1515 |
.sp |
.sp |
| 1516 |
A positive number specifies an absolute reference without the ambiguity that is |
An unsigned number specifies an absolute reference without the ambiguity that |
| 1517 |
present in the older syntax. It is also useful when literal digits follow the |
is present in the older syntax. It is also useful when literal digits follow |
| 1518 |
reference. A negative number is a relative reference. Consider this example: |
the reference. A negative number is a relative reference. Consider this |
| 1519 |
|
example: |
| 1520 |
.sp |
.sp |
| 1521 |
(abc(def)ghi)\eg{-1} |
(abc(def)ghi)\eg{-1} |
| 1522 |
.sp |
.sp |
| 1546 |
matches "rah rah" and "RAH RAH", but not "RAH rah", even though the original |
matches "rah rah" and "RAH RAH", but not "RAH rah", even though the original |
| 1547 |
capturing subpattern is matched caselessly. |
capturing subpattern is matched caselessly. |
| 1548 |
.P |
.P |
| 1549 |
Back references to named subpatterns use the Perl syntax \ek<name> or \ek'name' |
There are several different ways of writing back references to named |
| 1550 |
or the Python syntax (?P=name). We could rewrite the above example in either of |
subpatterns. The .NET syntax \ek{name} and the Perl syntax \ek<name> or |
| 1551 |
|
\ek'name' are supported, as is the Python syntax (?P=name). Perl 5.10's unified |
| 1552 |
|
back reference syntax, in which \eg can be used for both numeric and named |
| 1553 |
|
references, is also supported. We could rewrite the above example in any of |
| 1554 |
the following ways: |
the following ways: |
| 1555 |
.sp |
.sp |
| 1556 |
(?<p1>(?i)rah)\es+\ek<p1> |
(?<p1>(?i)rah)\es+\ek<p1> |
| 1557 |
|
(?'p1'(?i)rah)\es+\ek{p1} |
| 1558 |
(?P<p1>(?i)rah)\es+(?P=p1) |
(?P<p1>(?i)rah)\es+(?P=p1) |
| 1559 |
|
(?<p1>(?i)rah)\es+\eg{p1} |
| 1560 |
.sp |
.sp |
| 1561 |
A subpattern that is referenced by name may appear in the pattern before or |
A subpattern that is referenced by name may appear in the pattern before or |
| 1562 |
after the reference. |
after the reference. |
| 1679 |
.sp |
.sp |
| 1680 |
(?<=abc|abde) |
(?<=abc|abde) |
| 1681 |
.sp |
.sp |
| 1682 |
|
In some cases, the Perl 5.10 escape sequence \eK |
| 1683 |
|
.\" HTML <a href="#resetmatchstart"> |
| 1684 |
|
.\" </a> |
| 1685 |
|
(see above) |
| 1686 |
|
.\" |
| 1687 |
|
can be used instead of a lookbehind assertion; this is not restricted to a |
| 1688 |
|
fixed-length. |
| 1689 |
|
.P |
| 1690 |
The implementation of lookbehind assertions is, for each alternative, to |
The implementation of lookbehind assertions is, for each alternative, to |
| 1691 |
temporarily move the current position back by the fixed length and then try to |
temporarily move the current position back by the fixed length and then try to |
| 1692 |
match. If there are insufficient characters before the current position, the |
match. If there are insufficient characters before the current position, the |
| 1781 |
.sp |
.sp |
| 1782 |
If the text between the parentheses consists of a sequence of digits, the |
If the text between the parentheses consists of a sequence of digits, the |
| 1783 |
condition is true if the capturing subpattern of that number has previously |
condition is true if the capturing subpattern of that number has previously |
| 1784 |
matched. |
matched. An alternative notation is to precede the digits with a plus or minus |
| 1785 |
|
sign. In this case, the subpattern number is relative rather than absolute. |
| 1786 |
|
The most recently opened parentheses can be referenced by (?(-1), the next most |
| 1787 |
|
recent by (?(-2), and so on. In looping constructs it can also make sense to |
| 1788 |
|
refer to subsequent groups with constructs such as (?(+2). |
| 1789 |
.P |
.P |
| 1790 |
Consider the following pattern, which contains non-significant white space to |
Consider the following pattern, which contains non-significant white space to |
| 1791 |
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 |
| 1802 |
parenthesis is required. Otherwise, since no-pattern is not present, the |
parenthesis is required. Otherwise, since no-pattern is not present, the |
| 1803 |
subpattern matches nothing. In other words, this pattern matches a sequence of |
subpattern matches nothing. In other words, this pattern matches a sequence of |
| 1804 |
non-parentheses, optionally enclosed in parentheses. |
non-parentheses, optionally enclosed in parentheses. |
| 1805 |
|
.P |
| 1806 |
|
If you were embedding this pattern in a larger one, you could use a relative |
| 1807 |
|
reference: |
| 1808 |
|
.sp |
| 1809 |
|
...other stuff... ( \e( )? [^()]+ (?(-1) \e) ) ... |
| 1810 |
|
.sp |
| 1811 |
|
This makes the fragment independent of the parentheses in the larger pattern. |
| 1812 |
. |
. |
| 1813 |
.SS "Checking for a used subpattern by name" |
.SS "Checking for a used subpattern by name" |
| 1814 |
.rs |
.rs |
| 1951 |
( \e( ( (?>[^()]+) | (?1) )* \e) ) |
( \e( ( (?>[^()]+) | (?1) )* \e) ) |
| 1952 |
.sp |
.sp |
| 1953 |
We have put the pattern into parentheses, and caused the recursion to refer to |
We have put the pattern into parentheses, and caused the recursion to refer to |
| 1954 |
them instead of the whole pattern. In a larger pattern, keeping track of |
them instead of the whole pattern. |
| 1955 |
parenthesis numbers can be tricky. It may be more convenient to use named |
.P |
| 1956 |
parentheses instead. The Perl syntax for this is (?&name); PCRE's earlier |
In a larger pattern, keeping track of parenthesis numbers can be tricky. This |
| 1957 |
syntax (?P>name) is also supported. We could rewrite the above example as |
is made easier by the use of relative references. (A Perl 5.10 feature.) |
| 1958 |
follows: |
Instead of (?1) in the pattern above you can write (?-2) to refer to the second |
| 1959 |
|
most recently opened parentheses preceding the recursion. In other words, a |
| 1960 |
|
negative number counts capturing parentheses leftwards from the point at which |
| 1961 |
|
it is encountered. |
| 1962 |
|
.P |
| 1963 |
|
It is also possible to refer to subsequently opened parentheses, by writing |
| 1964 |
|
references such as (?+2). However, these cannot be recursive because the |
| 1965 |
|
reference is not inside the parentheses that are referenced. They are always |
| 1966 |
|
"subroutine" calls, as described in the next section. |
| 1967 |
|
.P |
| 1968 |
|
An alternative approach is to use named parentheses instead. The Perl syntax |
| 1969 |
|
for this is (?&name); PCRE's earlier syntax (?P>name) is also supported. We |
| 1970 |
|
could rewrite the above example as follows: |
| 1971 |
.sp |
.sp |
| 1972 |
(?<pn> \e( ( (?>[^()]+) | (?&pn) )* \e) ) |
(?<pn> \e( ( (?>[^()]+) | (?&pn) )* \e) ) |
| 1973 |
.sp |
.sp |
| 1974 |
If there is more than one subpattern with the same name, the earliest one is |
If there is more than one subpattern with the same name, the earliest one is |
| 1975 |
used. This particular example pattern contains nested unlimited repeats, and so |
used. |
| 1976 |
the use of atomic grouping for matching strings of non-parentheses is important |
.P |
| 1977 |
when applying the pattern to strings that do not match. For example, when this |
This particular example pattern that we have been looking at contains nested |
| 1978 |
pattern is applied to |
unlimited repeats, and so the use of atomic grouping for matching strings of |
| 1979 |
|
non-parentheses is important when applying the pattern to strings that do not |
| 1980 |
|
match. For example, when this pattern is applied to |
| 1981 |
.sp |
.sp |
| 1982 |
(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa() |
(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa() |
| 1983 |
.sp |
.sp |
| 2029 |
If the syntax for a recursive subpattern reference (either by number or by |
If the syntax for a recursive subpattern reference (either by number or by |
| 2030 |
name) is used outside the parentheses to which it refers, it operates like a |
name) is used outside the parentheses to which it refers, it operates like a |
| 2031 |
subroutine in a programming language. The "called" subpattern may be defined |
subroutine in a programming language. The "called" subpattern may be defined |
| 2032 |
before or after the reference. An earlier example pointed out that the pattern |
before or after the reference. A numbered reference can be absolute or |
| 2033 |
|
relative, as in these examples: |
| 2034 |
|
.sp |
| 2035 |
|
(...(absolute)...)...(?2)... |
| 2036 |
|
(...(relative)...)...(?-1)... |
| 2037 |
|
(...(?+1)...(relative)... |
| 2038 |
|
.sp |
| 2039 |
|
An earlier example pointed out that the pattern |
| 2040 |
.sp |
.sp |
| 2041 |
(sens|respons)e and \e1ibility |
(sens|respons)e and \e1ibility |
| 2042 |
.sp |
.sp |
| 2057 |
case-independence are fixed when the subpattern is defined. They cannot be |
case-independence are fixed when the subpattern is defined. They cannot be |
| 2058 |
changed for different calls. For example, consider this pattern: |
changed for different calls. For example, consider this pattern: |
| 2059 |
.sp |
.sp |
| 2060 |
(abc)(?i:(?1)) |
(abc)(?i:(?-1)) |
| 2061 |
.sp |
.sp |
| 2062 |
It matches "abcabc". It does not match "abcABC" because the change of |
It matches "abcabc". It does not match "abcABC" because the change of |
| 2063 |
processing option does not affect the called subpattern. |
processing option does not affect the called subpattern. |
| 2064 |
. |
. |
| 2065 |
. |
. |
| 2066 |
|
.\" HTML <a name="onigurumasubroutines"></a> |
| 2067 |
|
.SH "ONIGURUMA SUBROUTINE SYNTAX" |
| 2068 |
|
.rs |
| 2069 |
|
.sp |
| 2070 |
|
For compatibility with Oniguruma, the non-Perl syntax \eg followed by a name or |
| 2071 |
|
a number enclosed either in angle brackets or single quotes, is an alternative |
| 2072 |
|
syntax for referencing a subpattern as a subroutine, possibly recursively. Here |
| 2073 |
|
are two of the examples used above, rewritten using this syntax: |
| 2074 |
|
.sp |
| 2075 |
|
(?<pn> \e( ( (?>[^()]+) | \eg<pn> )* \e) ) |
| 2076 |
|
(sens|respons)e and \eg'1'ibility |
| 2077 |
|
.sp |
| 2078 |
|
PCRE supports an extension to Oniguruma: if a number is preceded by a |
| 2079 |
|
plus or a minus sign it is taken as a relative reference. For example: |
| 2080 |
|
.sp |
| 2081 |
|
(abc)(?i:\eg<-1>) |
| 2082 |
|
.sp |
| 2083 |
|
Note that \eg{...} (Perl syntax) and \eg<...> (Oniguruma syntax) are \fInot\fP |
| 2084 |
|
synonymous. The former is a back reference; the latter is a subroutine call. |
| 2085 |
|
. |
| 2086 |
|
. |
| 2087 |
.SH CALLOUTS |
.SH CALLOUTS |
| 2088 |
.rs |
.rs |
| 2089 |
.sp |
.sp |
| 2102 |
can put a number less than 256 after the letter C. The default value is zero. |
can put a number less than 256 after the letter C. The default value is zero. |
| 2103 |
For example, this pattern has two callout points: |
For example, this pattern has two callout points: |
| 2104 |
.sp |
.sp |
| 2105 |
(?C1)\dabc(?C2)def |
(?C1)abc(?C2)def |
| 2106 |
.sp |
.sp |
| 2107 |
If the PCRE_AUTO_CALLOUT flag is passed to \fBpcre_compile()\fP, callouts are |
If the PCRE_AUTO_CALLOUT flag is passed to \fBpcre_compile()\fP, callouts are |
| 2108 |
automatically installed before each item in the pattern. They are all numbered |
automatically installed before each item in the pattern. They are all numbered |
| 2120 |
documentation. |
documentation. |
| 2121 |
. |
. |
| 2122 |
. |
. |
| 2123 |
|
.SH "BACKTRACKING CONTROL" |
| 2124 |
|
.rs |
| 2125 |
|
.sp |
| 2126 |
|
Perl 5.10 introduced a number of "Special Backtracking Control Verbs", which |
| 2127 |
|
are described in the Perl documentation as "experimental and subject to change |
| 2128 |
|
or removal in a future version of Perl". It goes on to say: "Their usage in |
| 2129 |
|
production code should be noted to avoid problems during upgrades." The same |
| 2130 |
|
remarks apply to the PCRE features described in this section. |
| 2131 |
|
.P |
| 2132 |
|
Since these verbs are specifically related to backtracking, most of them can be |
| 2133 |
|
used only when the pattern is to be matched using \fBpcre_exec()\fP, which uses |
| 2134 |
|
a backtracking algorithm. With the exception of (*FAIL), which behaves like a |
| 2135 |
|
failing negative assertion, they cause an error if encountered by |
| 2136 |
|
\fBpcre_dfa_exec()\fP. |
| 2137 |
|
.P |
| 2138 |
|
If any of these verbs are used in an assertion subpattern, their effect is |
| 2139 |
|
confined to that subpattern; it does not extend to the surrounding pattern. |
| 2140 |
|
Note that assertion subpatterns are processed as anchored at the point where |
| 2141 |
|
they are tested. |
| 2142 |
|
.P |
| 2143 |
|
The new verbs make use of what was previously invalid syntax: an opening |
| 2144 |
|
parenthesis followed by an asterisk. In Perl, they are generally of the form |
| 2145 |
|
(*VERB:ARG) but PCRE does not support the use of arguments, so its general |
| 2146 |
|
form is just (*VERB). Any number of these verbs may occur in a pattern. There |
| 2147 |
|
are two kinds: |
| 2148 |
|
. |
| 2149 |
|
.SS "Verbs that act immediately" |
| 2150 |
|
.rs |
| 2151 |
|
.sp |
| 2152 |
|
The following verbs act as soon as they are encountered: |
| 2153 |
|
.sp |
| 2154 |
|
(*ACCEPT) |
| 2155 |
|
.sp |
| 2156 |
|
This verb causes the match to end successfully, skipping the remainder of the |
| 2157 |
|
pattern. When inside a recursion, only the innermost pattern is ended |
| 2158 |
|
immediately. If the (*ACCEPT) is inside capturing parentheses, the data so far |
| 2159 |
|
is captured. (This feature was added to PCRE at release 8.00.) For example: |
| 2160 |
|
.sp |
| 2161 |
|
A((?:A|B(*ACCEPT)|C)D) |
| 2162 |
|
.sp |
| 2163 |
|
This matches "AB", "AAD", or "ACD"; when it matches "AB", "B" is captured by |
| 2164 |
|
the outer parentheses. |
| 2165 |
|
.sp |
| 2166 |
|
(*FAIL) or (*F) |
| 2167 |
|
.sp |
| 2168 |
|
This verb causes the match to fail, forcing backtracking to occur. It is |
| 2169 |
|
equivalent to (?!) but easier to read. The Perl documentation notes that it is |
| 2170 |
|
probably useful only when combined with (?{}) or (??{}). Those are, of course, |
| 2171 |
|
Perl features that are not present in PCRE. The nearest equivalent is the |
| 2172 |
|
callout feature, as for example in this pattern: |
| 2173 |
|
.sp |
| 2174 |
|
a+(?C)(*FAIL) |
| 2175 |
|
.sp |
| 2176 |
|
A match with the string "aaaa" always fails, but the callout is taken before |
| 2177 |
|
each backtrack happens (in this example, 10 times). |
| 2178 |
|
. |
| 2179 |
|
.SS "Verbs that act after backtracking" |
| 2180 |
|
.rs |
| 2181 |
|
.sp |
| 2182 |
|
The following verbs do nothing when they are encountered. Matching continues |
| 2183 |
|
with what follows, but if there is no subsequent match, a failure is forced. |
| 2184 |
|
The verbs differ in exactly what kind of failure occurs. |
| 2185 |
|
.sp |
| 2186 |
|
(*COMMIT) |
| 2187 |
|
.sp |
| 2188 |
|
This verb causes the whole match to fail outright if the rest of the pattern |
| 2189 |
|
does not match. Even if the pattern is unanchored, no further attempts to find |
| 2190 |
|
a match by advancing the start point take place. Once (*COMMIT) has been |
| 2191 |
|
passed, \fBpcre_exec()\fP is committed to finding a match at the current |
| 2192 |
|
starting point, or not at all. For example: |
| 2193 |
|
.sp |
| 2194 |
|
a+(*COMMIT)b |
| 2195 |
|
.sp |
| 2196 |
|
This matches "xxaab" but not "aacaab". It can be thought of as a kind of |
| 2197 |
|
dynamic anchor, or "I've started, so I must finish." |
| 2198 |
|
.sp |
| 2199 |
|
(*PRUNE) |
| 2200 |
|
.sp |
| 2201 |
|
This verb causes the match to fail at the current position if the rest of the |
| 2202 |
|
pattern does not match. If the pattern is unanchored, the normal "bumpalong" |
| 2203 |
|
advance to the next starting character then happens. Backtracking can occur as |
| 2204 |
|
usual to the left of (*PRUNE), or when matching to the right of (*PRUNE), but |
| 2205 |
|
if there is no match to the right, backtracking cannot cross (*PRUNE). |
| 2206 |
|
In simple cases, the use of (*PRUNE) is just an alternative to an atomic |
| 2207 |
|
group or possessive quantifier, but there are some uses of (*PRUNE) that cannot |
| 2208 |
|
be expressed in any other way. |
| 2209 |
|
.sp |
| 2210 |
|
(*SKIP) |
| 2211 |
|
.sp |
| 2212 |
|
This verb is like (*PRUNE), except that if the pattern is unanchored, the |
| 2213 |
|
"bumpalong" advance is not to the next character, but to the position in the |
| 2214 |
|
subject where (*SKIP) was encountered. (*SKIP) signifies that whatever text |
| 2215 |
|
was matched leading up to it cannot be part of a successful match. Consider: |
| 2216 |
|
.sp |
| 2217 |
|
a+(*SKIP)b |
| 2218 |
|
.sp |
| 2219 |
|
If the subject is "aaaac...", after the first match attempt fails (starting at |
| 2220 |
|
the first character in the string), the starting point skips on to start the |
| 2221 |
|
next attempt at "c". Note that a possessive quantifer does not have the same |
| 2222 |
|
effect in this example; although it would suppress backtracking during the |
| 2223 |
|
first match attempt, the second attempt would start at the second character |
| 2224 |
|
instead of skipping on to "c". |
| 2225 |
|
.sp |
| 2226 |
|
(*THEN) |
| 2227 |
|
.sp |
| 2228 |
|
This verb causes a skip to the next alternation if the rest of the pattern does |
| 2229 |
|
not match. That is, it cancels pending backtracking, but only within the |
| 2230 |
|
current alternation. Its name comes from the observation that it can be used |
| 2231 |
|
for a pattern-based if-then-else block: |
| 2232 |
|
.sp |
| 2233 |
|
( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ... |
| 2234 |
|
.sp |
| 2235 |
|
If the COND1 pattern matches, FOO is tried (and possibly further items after |
| 2236 |
|
the end of the group if FOO succeeds); on failure the matcher skips to the |
| 2237 |
|
second alternative and tries COND2, without backtracking into COND1. If (*THEN) |
| 2238 |
|
is used outside of any alternation, it acts exactly like (*PRUNE). |
| 2239 |
|
. |
| 2240 |
|
. |
| 2241 |
.SH "SEE ALSO" |
.SH "SEE ALSO" |
| 2242 |
.rs |
.rs |
| 2243 |
.sp |
.sp |
| 2244 |
\fBpcreapi\fP(3), \fBpcrecallout\fP(3), \fBpcrematching\fP(3), \fBpcre\fP(3). |
\fBpcreapi\fP(3), \fBpcrecallout\fP(3), \fBpcrematching\fP(3), \fBpcre\fP(3). |
| 2245 |
.P |
. |
| 2246 |
.in 0 |
. |
| 2247 |
Last updated: 06 December 2006 |
.SH AUTHOR |
| 2248 |
.br |
.rs |
| 2249 |
Copyright (c) 1997-2006 University of Cambridge. |
.sp |
| 2250 |
|
.nf |
| 2251 |
|
Philip Hazel |
| 2252 |
|
University Computing Service |
| 2253 |
|
Cambridge CB2 3QH, England. |
| 2254 |
|
.fi |
| 2255 |
|
. |
| 2256 |
|
. |
| 2257 |
|
.SH REVISION |
| 2258 |
|
.rs |
| 2259 |
|
.sp |
| 2260 |
|
.nf |
| 2261 |
|
Last updated: 15 September 2009 |
| 2262 |
|
Copyright (c) 1997-2009 University of Cambridge. |
| 2263 |
|
.fi |