/[pcre]/code/trunk/doc/pcrepattern.3
ViewVC logotype

Diff of /code/trunk/doc/pcrepattern.3

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 517 by ph10, Wed May 5 10:44:20 2010 UTC revision 572 by ph10, Wed Nov 17 17:55:57 2010 UTC
# Line 42  in the main Line 42  in the main
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,
# Line 56  discussed in the Line 66  discussed in the
66  page.  page.
67  .  .
68  .  .
69    .\" HTML <a name="newlines"></a>
70  .SH "NEWLINE CONVENTIONS"  .SH "NEWLINE CONVENTIONS"
71  .rs  .rs
72  .sp  .sp
# Line 200  Perl, $ and @ cause variable interpolati Line 211  Perl, $ and @ cause variable interpolati
211    \eQabc\eE\e$\eQxyz\eE   abc$xyz        abc$xyz    \eQabc\eE\e$\eQxyz\eE   abc$xyz        abc$xyz
212  .sp  .sp
213  The \eQ...\eE sequence is recognized both inside and outside character classes.  The \eQ...\eE sequence is recognized both inside and outside character classes.
214    An isolated \eE that is not preceded by \eQ is ignored.
215  .  .
216  .  .
217  .\" HTML <a name="digitsafterbackslash"></a>  .\" HTML <a name="digitsafterbackslash"></a>
# Line 340  subroutine Line 352  subroutine
352  call.  call.
353  .  .
354  .  .
355    .\" HTML <a name="genericchartypes"></a>
356  .SS "Generic character types"  .SS "Generic character types"
357  .rs  .rs
358  .sp  .sp
# Line 356  Another use of backslash is for specifyi Line 369  Another use of backslash is for specifyi
369    \ew     any "word" character    \ew     any "word" character
370    \eW     any "non-word" character    \eW     any "non-word" character
371  .sp  .sp
372  There is also the single sequence \eN, which matches a non-newline character.  There is also the single sequence \eN, which matches a non-newline character.
373  This is the same as  This is the same as
374  .\" HTML <a href="#fullstopdot">  .\" HTML <a href="#fullstopdot">
375  .\" </a>  .\" </a>
376  the "." metacharacter  the "." metacharacter
377  .\"  .\"
378  when PCRE_DOTALL is not set.  when PCRE_DOTALL is not set.
379  .P  .P
380  Each pair of lower and upper case escape sequences partitions the complete set  Each pair of lower and upper case escape sequences partitions the complete set
381  of characters into two disjoint sets. Any given character matches one, and only  of characters into two disjoint sets. Any given character matches one, and only
382  one, of each pair.  one, of each pair. The sequences can appear both inside and outside character
 .P  
 These character type sequences can appear both inside and outside character  
383  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
384  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
385  there is no character to match.  there is no character to match.
386  .P  .P
387  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).
# Line 379  are HT (9), LF (10), FF (12), CR (13), a Line 390  are HT (9), LF (10), FF (12), CR (13), a
390  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
391  does.  does.
392  .P  .P
393  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.
394  \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
395  character property support is available. These sequences retain their original  low-valued character tables, and may vary if locale-specific matching is taking
396  meanings from before UTF-8 support was available, mainly for efficiency  place (see
397  reasons. Note that this also affects \eb, because it is defined in terms of \ew  .\" HTML <a href="pcreapi.html#localesupport">
398  and \eW.  .\" </a>
399  .P  "Locale support"
400  The sequences \eh, \eH, \ev, and \eV are Perl 5.10 features. In contrast to the  .\"
401  other sequences, these do match certain high-valued codepoints in UTF-8 mode.  in the
402  The horizontal space characters are:  .\" HREF
403    \fBpcreapi\fP
404    .\"
405    page). For example, in a French locale such as "fr_FR" in Unix-like systems,
406    or "french" in Windows, some character codes greater than 128 are used for
407    accented letters, and these are then matched by \ew. The use of locales with
408    Unicode is discouraged.
409    .P
410    By default, in UTF-8 mode, characters with values greater than 128 never match
411    \ed, \es, or \ew, and always match \eD, \eS, and \eW. These sequences retain
412    their original meanings from before UTF-8 support was available, mainly for
413    efficiency reasons. However, if PCRE is compiled with Unicode property support,
414    and the PCRE_UCP option is set, the behaviour is changed so that Unicode
415    properties are used to determine character types, as follows:
416    .sp
417      \ed  any character that \ep{Nd} matches (decimal digit)
418      \es  any character that \ep{Z} matches, plus HT, LF, FF, CR
419      \ew  any character that \ep{L} or \ep{N} matches, plus underscore
420    .sp
421    The upper case escapes match the inverse sets of characters. Note that \ed
422    matches only decimal digits, whereas \ew matches any Unicode digit, as well as
423    any Unicode letter, and underscore. Note also that PCRE_UCP affects \eb, and
424    \eB because they are defined in terms of \ew and \eW. Matching these sequences
425    is noticeably slower when PCRE_UCP is set.
426    .P
427    The sequences \eh, \eH, \ev, and \eV are features that were added to Perl at
428    release 5.10. In contrast to the other sequences, which match only ASCII
429    characters by default, these always match certain high-valued codepoints in
430    UTF-8 mode, whether or not PCRE_UCP is set. The horizontal space characters
431    are:
432  .sp  .sp
433    U+0009     Horizontal tab    U+0009     Horizontal tab
434    U+0020     Space    U+0020     Space
# Line 419  The vertical space characters are: Line 459  The vertical space characters are:
459    U+0085     Next line    U+0085     Next line
460    U+2028     Line separator    U+2028     Line separator
461    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.  
462  .  .
463  .  .
464  .\" HTML <a name="newlineseq"></a>  .\" HTML <a name="newlineseq"></a>
# Line 443  is discouraged. Line 466  is discouraged.
466  .rs  .rs
467  .sp  .sp
468  Outside a character class, by default, the escape sequence \eR matches any  Outside a character class, by default, the escape sequence \eR matches any
469  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:  
470  .sp  .sp
471    (?>\er\en|\en|\ex0b|\ef|\er|\ex85)    (?>\er\en|\en|\ex0b|\ef|\er|\ex85)
472  .sp  .sp
# Line 481  These override the default and the optio Line 503  These override the default and the optio
503  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
504  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
505  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
506  convention, for example, a pattern can start with:  convention; for example, a pattern can start with:
507  .sp  .sp
508    (*ANY)(*BSR_ANYCRLF)    (*ANY)(*BSR_ANYCRLF)
509  .sp  .sp
510  Inside a character class, \eR is treated as an unrecognized escape sequence,  They can also be combined with the (*UTF8) or (*UCP) special sequences. Inside
511  and so matches the letter "R" by default, but causes an error if PCRE_EXTRA is  a character class, \eR is treated as an unrecognized escape sequence, and so
512  set.  matches the letter "R" by default, but causes an error if PCRE_EXTRA is set.
513  .  .
514  .  .
515  .\" HTML <a name="uniextseq"></a>  .\" HTML <a name="uniextseq"></a>
# Line 507  The extra escape sequences are: Line 529  The extra escape sequences are:
529  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
530  script names, the general category properties, "Any", which matches any  script names, the general category properties, "Any", which matches any
531  character (including newline), and some special PCRE properties (described  character (including newline), and some special PCRE properties (described
532  in the  in the
533  .\" HTML <a href="#extraprops">  .\" HTML <a href="#extraprops">
534  .\" </a>  .\" </a>
535  next section).  next section).
536  .\"  .\"
537  Other Perl properties such as "InMusicalSymbols" are not currently supported by  Other Perl properties such as "InMusicalSymbols" are not currently supported by
538  PCRE. Note that \eP{Any} does not match any characters, so always causes a  PCRE. Note that \eP{Any} does not match any characters, so always causes a
# Line 721  non-UTF-8 mode \eX matches any one chara Line 743  non-UTF-8 mode \eX matches any one chara
743  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
744  a structure that contains data for over fifteen thousand characters. That is  a structure that contains data for over fifteen thousand characters. That is
745  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
746  properties in PCRE.  properties in PCRE by default, though you can make them do so by setting the
747    PCRE_UCP option for \fBpcre_compile()\fP or by starting the pattern with
748    (*UCP).
749  .  .
750  .  .
751  .\" HTML <a name="extraprops"></a>  .\" HTML <a name="extraprops"></a>
752  .SS PCRE's additional properties  .SS PCRE's additional properties
753  .rs  .rs
754  .sp  .sp
755  As well as the standard Unicode properties described in the previous  As well as the standard Unicode properties described in the previous
756  section, PCRE supports four more that make it possible to convert traditional  section, PCRE supports four more that make it possible to convert traditional
757  escape sequences such as \ew and \es and POSIX character classes to use Unicode  escape sequences such as \ew and \es and POSIX character classes to use Unicode
758  properties. These are:  properties. PCRE uses these non-standard, non-Perl properties internally when
759    PCRE_UCP is set. They are:
760  .sp  .sp
761    Xan   Any alphanumeric character    Xan   Any alphanumeric character
762    Xps   Any POSIX space character    Xps   Any POSIX space character
763    Xsp   Any Perl space character    Xsp   Any Perl space character
764    Xwd   Any Perl "word" character    Xwd   Any Perl "word" character
765  .sp  .sp
766  Xan matches characters that have either the L (letter) or the N (number)  Xan matches characters that have either the L (letter) or the N (number)
767  property. Xps matches the characters tab, linefeed, vertical tab, formfeed, or  property. Xps matches the characters tab, linefeed, vertical tab, formfeed, or
768  carriage return, and any other character that has the Z (separator) property.  carriage return, and any other character that has the Z (separator) property.
769  Xsp is the same as Xps, except that vertical tab is excluded. Xwd matches the  Xsp is the same as Xps, except that vertical tab is excluded. Xwd matches the
770  same characters as Xan, plus underscore.  same characters as Xan, plus underscore.
771  .  .
772  .  .
# Line 749  same characters as Xan, plus underscore. Line 774  same characters as Xan, plus underscore.
774  .SS "Resetting the match start"  .SS "Resetting the match start"
775  .rs  .rs
776  .sp  .sp
777  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
778  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:  
779  .sp  .sp
780    foo\eKbar    foo\eKbar
781  .sp  .sp
# Line 802  The backslashed assertions are: Line 826  The backslashed assertions are:
826    \eG     matches at the first matching position in the subject    \eG     matches at the first matching position in the subject
827  .sp  .sp
828  Inside a character class, \eb has a different meaning; it matches the backspace  Inside a character class, \eb has a different meaning; it matches the backspace
829  character. If any other of these assertions appears in a character class, by  character. If any other of these assertions appears in a character class, by
830  default it matches the corresponding literal character (for example, \eB  default it matches the corresponding literal character (for example, \eB
831  matches the letter B). However, if the PCRE_EXTRA option is set, an "invalid  matches the letter B). However, if the PCRE_EXTRA option is set, an "invalid
832  escape sequence" error is generated instead.  escape sequence" error is generated instead.
# Line 810  escape sequence" error is generated inst Line 834  escape sequence" error is generated inst
834  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
835  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
836  \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
837  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
838  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
839  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
840  \eba matches "a" at the start of a word.  of word" or "end of word" metasequence. However, whatever follows \eb normally
841    determines which it is. For example, the fragment \eba matches "a" at the start
842    of a word.
843  .P  .P
844  The \eA, \eZ, and \ez assertions differ from the traditional circumflex and  The \eA, \eZ, and \ez assertions differ from the traditional circumflex and
845  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
# Line 921  The handling of dot is entirely independ Line 947  The handling of dot is entirely independ
947  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
948  special meaning in a character class.  special meaning in a character class.
949  .P  .P
950  The escape sequence \eN always behaves as a dot does when PCRE_DOTALL is not  The escape sequence \eN behaves like a dot, except that it is not affected by
951  set. In other words, it matches any one character except one that signifies the  the PCRE_DOTALL option. In other words, it matches any character except one
952  end of a line.  that signifies the end of a line.
953  .  .
954  .  .
955  .SH "MATCHING A SINGLE BYTE"  .SH "MATCHING A SINGLE BYTE"
# Line 932  end of a line. Line 958  end of a line.
958  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
959  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
960  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
961  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
962  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,
963  the \eC escape sequence is best avoided.  the \eC escape sequence is best avoided.
964  .P  .P
965  PCRE does not allow \eC to appear in lookbehind assertions  PCRE does not allow \eC to appear in lookbehind assertions
# Line 1018  characters in both cases. In UTF-8 mode, Line 1044  characters in both cases. In UTF-8 mode,
1044  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
1045  property support.  property support.
1046  .P  .P
1047  The character types \ed, \eD, \ep, \eP, \es, \eS, \ew, and \eW may also appear  The character types \ed, \eD, \eh, \eH, \ep, \eP, \es, \eS, \ev, \eV, \ew, and
1048  in a character class, and add the characters that they match to the class. For  \eW may also appear in a character class, and add the characters that they
1049  example, [\edABCDEF] matches any hexadecimal digit. A circumflex can  match to the class. For example, [\edABCDEF] matches any hexadecimal digit. A
1050  conveniently be used with the upper case character types to specify a more  circumflex can conveniently be used with the upper case character types to
1051  restricted set of characters than the matching lower case type. For example,  specify a more restricted set of characters than the matching lower case type.
1052  the class [^\eW_] matches any letter or digit, but not underscore.  For example, the class [^\eW_] matches any letter or digit, but not underscore.
1053  .P  .P
1054  The only metacharacters that are recognized in character classes are backslash,  The only metacharacters that are recognized in character classes are backslash,
1055  hyphen (only where it can be interpreted as specifying a range), circumflex  hyphen (only where it can be interpreted as specifying a range), circumflex
# Line 1043  this notation. For example, Line 1069  this notation. For example,
1069    [01[:alpha:]%]    [01[:alpha:]%]
1070  .sp  .sp
1071  matches "0", "1", any alphabetic character, or "%". The supported class names  matches "0", "1", any alphabetic character, or "%". The supported class names
1072  are  are:
1073  .sp  .sp
1074    alnum    letters and digits    alnum    letters and digits
1075    alpha    letters    alpha    letters
# Line 1054  are Line 1080  are
1080    graph    printing characters, excluding space    graph    printing characters, excluding space
1081    lower    lower case letters    lower    lower case letters
1082    print    printing characters, including space    print    printing characters, including space
1083    punct    printing characters, excluding letters and digits    punct    printing characters, excluding letters and digits and space
1084    space    white space (not quite the same as \es)    space    white space (not quite the same as \es)
1085    upper    upper case letters    upper    upper case letters
1086    word     "word" characters (same as \ew)    word     "word" characters (same as \ew)
# Line 1075  matches "1", "2", or any non-digit. PCRE Line 1101  matches "1", "2", or any non-digit. PCRE
1101  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
1102  supported, and an error is given if they are encountered.  supported, and an error is given if they are encountered.
1103  .P  .P
1104  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
1105  the POSIX character classes.  any of the POSIX character classes. However, if the PCRE_UCP option is passed
1106    to \fBpcre_compile()\fP, some of the classes are changed so that Unicode
1107    character properties are used. This is achieved by replacing the POSIX classes
1108    by other sequences, as follows:
1109    .sp
1110      [:alnum:]  becomes  \ep{Xan}
1111      [:alpha:]  becomes  \ep{L}
1112      [:blank:]  becomes  \eh
1113      [:digit:]  becomes  \ep{Nd}
1114      [:lower:]  becomes  \ep{Ll}
1115      [:space:]  becomes  \ep{Xps}
1116      [:upper:]  becomes  \ep{Lu}
1117      [:word:]   becomes  \ep{Xwd}
1118    .sp
1119    Negated versions, such as [:^alpha:] use \eP instead of \ep. The other POSIX
1120    classes are unchanged, and match only characters with code points less than
1121    128.
1122  .  .
1123  .  .
1124  .SH "VERTICAL BAR"  .SH "VERTICAL BAR"
# Line 1130  extracts it into the global options (and Line 1172  extracts it into the global options (and
1172  extracted by the \fBpcre_fullinfo()\fP function).  extracted by the \fBpcre_fullinfo()\fP function).
1173  .P  .P
1174  An option change within a subpattern (see below for a description of  An option change within a subpattern (see below for a description of
1175  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
1176  .sp  .sp
1177    (a(?i)b)c    (a(?i)b)c
1178  .sp  .sp
# Line 1155  section entitled Line 1197  section entitled
1197  .\" </a>  .\" </a>
1198  "Newline sequences"  "Newline sequences"
1199  .\"  .\"
1200  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
1201  mode; this is equivalent to setting the PCRE_UTF8 option.  to set UTF-8 and Unicode property modes; they are equivalent to setting the
1202    PCRE_UTF8 and the PCRE_UCP options, respectively.
1203  .  .
1204  .  .
1205  .\" HTML <a name="subpattern"></a>  .\" HTML <a name="subpattern"></a>
# Line 1170  Turning part of a pattern into a subpatt Line 1213  Turning part of a pattern into a subpatt
1213  .sp  .sp
1214    cat(aract|erpillar|)    cat(aract|erpillar|)
1215  .sp  .sp
1216  matches one of the words "cat", "cataract", or "caterpillar". Without the  matches "cataract", "caterpillar", or "cat". Without the parentheses, it would
1217  parentheses, it would match "cataract", "erpillar" or an empty string.  match "cataract", "erpillar" or an empty string.
1218  .sp  .sp
1219  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
1220  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
1221  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
1222  \fBpcre_exec()\fP. Opening parentheses are counted from left to right (starting  \fBpcre_exec()\fP. Opening parentheses are counted from left to right (starting
1223  from 1) to obtain numbers for the capturing subpatterns.  from 1) to obtain numbers for the capturing subpatterns. For example, if the
1224  .P  string "the red king" is matched against the pattern
 For example, if the string "the red king" is matched against the pattern  
1225  .sp  .sp
1226    the ((red|white) (king|queen))    the ((red|white) (king|queen))
1227  .sp  .sp
# Line 1228  at captured substring number one, whiche Line 1270  at captured substring number one, whiche
1270  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
1271  alternatives. Inside a (?| group, parentheses are numbered as usual, but the  alternatives. Inside a (?| group, parentheses are numbered as usual, but the
1272  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
1273  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
1274  branch. The following example is taken from the Perl documentation.  any branch. The following example is taken from the Perl documentation. The
1275  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.  
1276  .sp  .sp
1277    # before  ---------------branch-reset----------- after    # before  ---------------branch-reset----------- after
1278    / ( a )  (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x    / ( a )  (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x
# Line 1358  items: Line 1399  items:
1399    the \eC escape sequence    the \eC escape sequence
1400    the \eX escape sequence (in UTF-8 mode with Unicode properties)    the \eX escape sequence (in UTF-8 mode with Unicode properties)
1401    the \eR escape sequence    the \eR escape sequence
1402    an escape such as \ed that matches a single character    an escape such as \ed or \epL that matches a single character
1403    a character class    a character class
1404    a back reference (see next section)    a back reference (see next section)
1405    a parenthesized subpattern (unless it is an assertion)    a parenthesized subpattern (unless it is an assertion)
# Line 1400  subpatterns that are referenced as Line 1441  subpatterns that are referenced as
1441  .\" </a>  .\" </a>
1442  subroutines  subroutines
1443  .\"  .\"
1444  from elsewhere in the pattern. Items other than subpatterns that have a {0}  from elsewhere in the pattern (but see also the section entitled
1445  quantifier are omitted from the compiled pattern.  .\" HTML <a href="#subdefine">
1446    .\" </a>
1447    "Defining subpatterns for use by reference only"
1448    .\"
1449    below). Items other than subpatterns that have a {0} quantifier are omitted
1450    from the compiled pattern.
1451  .P  .P
1452  For convenience, the three most common quantifiers have single-character  For convenience, the three most common quantifiers have single-character
1453  abbreviations:  abbreviations:
# Line 1626  no such problem when named parentheses a Line 1672  no such problem when named parentheses a
1672  subpattern is possible using named parentheses (see below).  subpattern is possible using named parentheses (see below).
1673  .P  .P
1674  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
1675  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
1676  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
1677  number, optionally enclosed in braces. These examples are all identical:  examples are all identical:
1678  .sp  .sp
1679    (ring), \e1    (ring), \e1
1680    (ring), \eg1    (ring), \eg1
# Line 1642  example: Line 1688  example:
1688    (abc(def)ghi)\eg{-1}    (abc(def)ghi)\eg{-1}
1689  .sp  .sp
1690  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
1691  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.
1692  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
1693  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
1694  fragments that contain references within themselves.  joining together fragments that contain references within themselves.
1695  .P  .P
1696  A back reference matches whatever actually matched the capturing subpattern in  A back reference matches whatever actually matched the capturing subpattern in
1697  the current subject string, rather than anything matching the subpattern  the current subject string, rather than anything matching the subpattern
# Line 1781  lookbehind assertion is needed to achiev Line 1827  lookbehind assertion is needed to achiev
1827  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
1828  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
1829  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.
1830  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 (?!).  
1831  .  .
1832  .  .
1833  .\" HTML <a name="lookbehind"></a>  .\" HTML <a name="lookbehind"></a>
# Line 1807  is permitted, but Line 1852  is permitted, but
1852  .sp  .sp
1853  causes an error at compile time. Branches that match different length strings  causes an error at compile time. Branches that match different length strings
1854  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
1855  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
1856  match the same length of string. An assertion such as  length of string. An assertion such as
1857  .sp  .sp
1858    (?<=ab(c|de))    (?<=ab(c|de))
1859  .sp  .sp
# Line 1818  branches: Line 1863  branches:
1863  .sp  .sp
1864    (?<=abc|abde)    (?<=abc|abde)
1865  .sp  .sp
1866  In some cases, the Perl 5.10 escape sequence \eK  In some cases, the escape sequence \eK
1867  .\" HTML <a href="#resetmatchstart">  .\" HTML <a href="#resetmatchstart">
1868  .\" </a>  .\" </a>
1869  (see above)  (see above)
# Line 1922  already been matched. The two possible f Line 1967  already been matched. The two possible f
1967  .sp  .sp
1968  If the condition is satisfied, the yes-pattern is used; otherwise the  If the condition is satisfied, the yes-pattern is used; otherwise the
1969  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
1970  subpattern, a compile-time error occurs.  subpattern, a compile-time error occurs. Each of the two alternatives may
1971    itself contain nested subpatterns of any form, including conditional
1972    subpatterns; the restriction to two alternatives applies only at the level of
1973    the condition. This pattern fragment is an example where the alternatives are
1974    complex:
1975    .sp
1976      (?(1) (A|B|C) | (D | (?(2)E|F) | E) )
1977    .sp
1978  .P  .P
1979  There are four kinds of condition: references to subpatterns, references to  There are four kinds of condition: references to subpatterns, references to
1980  recursion, a pseudo-condition called DEFINE, and assertions.  recursion, a pseudo-condition called DEFINE, and assertions.
# Line 1939  matched. If there is more than one captu Line 1991  matched. If there is more than one captu
1991  .\" </a>  .\" </a>
1992  section about duplicate subpattern numbers),  section about duplicate subpattern numbers),
1993  .\"  .\"
1994  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
1995  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
1996  number is relative rather than absolute. The most recently opened parentheses  number is relative rather than absolute. The most recently opened parentheses
1997  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
1998  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
1999  constructs such as (?(+2).  parentheses to be opened can be referenced as (?(+1), and so on. (The value
2000    zero in any of these forms is not used; it provokes a compile-time error.)
2001  .P  .P
2002  Consider the following pattern, which contains non-significant white space to  Consider the following pattern, which contains non-significant white space to
2003  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
# Line 1955  three parts for ease of discussion: Line 2008  three parts for ease of discussion:
2008  The first part matches an optional opening parenthesis, and if that  The first part matches an optional opening parenthesis, and if that
2009  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
2010  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
2011  conditional subpattern that tests whether the first set of parentheses matched  conditional subpattern that tests whether or not the first set of parentheses
2012  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,
2013  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
2014  parenthesis is required. Otherwise, since no-pattern is not present, the  parenthesis is required. Otherwise, since no-pattern is not present, the
2015  subpattern matches nothing. In other words, this pattern matches a sequence of  subpattern matches nothing. In other words, this pattern matches a sequence of
# Line 2012  The syntax for recursive patterns Line 2065  The syntax for recursive patterns
2065  .\"  .\"
2066  is described below.  is described below.
2067  .  .
2068    .\" HTML <a name="subdefine"></a>
2069  .SS "Defining subpatterns for use by reference only"  .SS "Defining subpatterns for use by reference only"
2070  .rs  .rs
2071  .sp  .sp
# Line 2024  point in the pattern; the idea of DEFINE Line 2078  point in the pattern; the idea of DEFINE
2078  .\" </a>  .\" </a>
2079  "subroutines"  "subroutines"
2080  .\"  .\"
2081  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
2082  written like this (ignore whitespace and line breaks):  "192.168.23.245" could be written like this (ignore whitespace and line
2083    breaks):
2084  .sp  .sp
2085    (?(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) )
2086    \eb (?&byte) (\e.(?&byte)){3} \eb    \eb (?&byte) (\e.(?&byte)){3} \eb
# Line 2060  dd-aaa-dd or dd-dd-dd, where aaa are let Line 2115  dd-aaa-dd or dd-dd-dd, where aaa are let
2115  .SH COMMENTS  .SH COMMENTS
2116  .rs  .rs
2117  .sp  .sp
2118  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
2119  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,
2120  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
2121    subpattern name or number. The characters that make up a comment play no part
2122    in the pattern matching.
2123  .P  .P
2124  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
2125  character class introduces a comment that continues to immediately after the  closing parenthesis. Nested parentheses are not permitted. If the PCRE_EXTENDED
2126  next newline in the pattern.  option is set, an unescaped # character also introduces a comment, which in
2127    this case continues to immediately after the next newline character or
2128    character sequence in the pattern. Which characters are interpreted as newlines
2129    is controlled by the options passed to \fBpcre_compile()\fP or by a special
2130    sequence at the start of the pattern, as described in the section entitled
2131    .\" HTML <a href="#newlines">
2132    .\" </a>
2133    "Newline conventions"
2134    .\"
2135    above. Note that the end of this type of comment is a literal newline sequence
2136    in the pattern; escape sequences that happen to represent a newline do not
2137    count. For example, consider this pattern when PCRE_EXTENDED is set, and the
2138    default newline convention is in force:
2139    .sp
2140      abc #comment \en still comment
2141    .sp
2142    On encountering the # character, \fBpcre_compile()\fP skips along, looking for
2143    a newline in the pattern. The sequence \en is still literal at this stage, so
2144    it does not terminate the comment. Only an actual character with the code value
2145    0x0a (the default newline) does so.
2146  .  .
2147  .  .
2148  .\" HTML <a name="recursion"></a>  .\" HTML <a name="recursion"></a>
# Line 2124  We have put the pattern into parentheses Line 2200  We have put the pattern into parentheses
2200  them instead of the whole pattern.  them instead of the whole pattern.
2201  .P  .P
2202  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
2203  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
2204  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
2205  most recently opened parentheses preceding the recursion. In other words, a  parentheses preceding the recursion. In other words, a negative number counts
2206  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.  
2207  .P  .P
2208  It is also possible to refer to subsequently opened parentheses, by writing  It is also possible to refer to subsequently opened parentheses, by writing
2209  references such as (?+2). However, these cannot be recursive because the  references such as (?+2). However, these cannot be recursive because the
# Line 2231  time we do have another alternative to t Line 2306  time we do have another alternative to t
2306  difference: in the previous case the remaining alternative is at a deeper  difference: in the previous case the remaining alternative is at a deeper
2307  recursion level, which PCRE cannot use.  recursion level, which PCRE cannot use.
2308  .P  .P
2309  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
2310  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
2311    this:
2312  .sp  .sp
2313    ^((.)(?1)\e2|.?)$    ^((.)(?1)\e2|.?)$
2314  .sp  .sp
# Line 2588  matching name is found, normal "bumpalon Line 2664  matching name is found, normal "bumpalon
2664  .sp  .sp
2665    (*THEN) or (*THEN:NAME)    (*THEN) or (*THEN:NAME)
2666  .sp  .sp
2667  This verb causes a skip to the next alternation if the rest of the pattern does  This verb causes a skip to the next alternation in the innermost enclosing
2668  not match. That is, it cancels pending backtracking, but only within the  group if the rest of the pattern does not match. That is, it cancels pending
2669  current alternation. Its name comes from the observation that it can be used  backtracking, but only within the current alternation. Its name comes from the
2670  for a pattern-based if-then-else block:  observation that it can be used for a pattern-based if-then-else block:
2671  .sp  .sp
2672    ( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ...    ( COND1 (*THEN) FOO | COND2 (*THEN) BAR | COND3 (*THEN) BAZ ) ...
2673  .sp  .sp
# Line 2602  behaviour of (*THEN:NAME) is exactly the Line 2678  behaviour of (*THEN:NAME) is exactly the
2678  overall match fails. If (*THEN) is not directly inside an alternation, it acts  overall match fails. If (*THEN) is not directly inside an alternation, it acts
2679  like (*PRUNE).  like (*PRUNE).
2680  .  .
2681    .P
2682    The above verbs provide four different "strengths" of control when subsequent
2683    matching fails. (*THEN) is the weakest, carrying on the match at the next
2684    alternation. (*PRUNE) comes next, failing the match at the current starting
2685    position, but allowing an advance to the next character (for an unanchored
2686    pattern). (*SKIP) is similar, except that the advance may be more than one
2687    character. (*COMMIT) is the strongest, causing the entire match to fail.
2688    .P
2689    If more than one is present in a pattern, the "stongest" one wins. For example,
2690    consider this pattern, where A, B, etc. are complex pattern fragments:
2691    .sp
2692      (A(*COMMIT)B(*THEN)C|D)
2693    .sp
2694    Once A has matched, PCRE is committed to this match, at the current starting
2695    position. If subsequently B matches, but C does not, the normal (*THEN) action
2696    of trying the next alternation (that is, D) does not happen because (*COMMIT)
2697    overrides.
2698    .
2699  .  .
2700  .SH "SEE ALSO"  .SH "SEE ALSO"
2701  .rs  .rs
# Line 2624  Cambridge CB2 3QH, England. Line 2718  Cambridge CB2 3QH, England.
2718  .rs  .rs
2719  .sp  .sp
2720  .nf  .nf
2721  Last updated: 05 May 2010  Last updated: 17 November 2010
2722  Copyright (c) 1997-2010 University of Cambridge.  Copyright (c) 1997-2010 University of Cambridge.
2723  .fi  .fi

Legend:
Removed from v.517  
changed lines
  Added in v.572

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12