--- embedaddon/pcre/doc/html/pcrepattern.html 2012/02/21 23:05:52 1.1 +++ embedaddon/pcre/doc/html/pcrepattern.html 2012/10/09 09:19:18 1.1.1.3 @@ -19,7 +19,7 @@ man page, in case the conversion went wrong.
  • BACKSLASH
  • CIRCUMFLEX AND DOLLAR
  • FULL STOP (PERIOD, DOT) AND \N -
  • MATCHING A SINGLE BYTE +
  • MATCHING A SINGLE DATA UNIT
  • SQUARE BRACKETS AND CHARACTER CLASSES
  • POSIX CHARACTER CLASSES
  • VERTICAL BAR @@ -61,23 +61,26 @@ description of PCRE's regular expressions is intended

    The original operation of PCRE was on strings of one-byte characters. However, -there is now also support for UTF-8 character strings. To use this, -PCRE must be built to include UTF-8 support, and you must call -pcre_compile() or pcre_compile2() with the PCRE_UTF8 option. There -is also a special sequence that can be given at the start of a pattern: +there is now also support for UTF-8 strings in the original library, and a +second library that supports 16-bit and UTF-16 character strings. To use these +features, PCRE must be built to include appropriate support. When using UTF +strings you must either call the compiling function with the PCRE_UTF8 or +PCRE_UTF16 option, or the pattern must start with one of these special +sequences:

       (*UTF8)
    +  (*UTF16)
     
    -Starting a pattern with this sequence is equivalent to setting the PCRE_UTF8 -option. This feature is not Perl-compatible. How setting UTF-8 mode affects +Starting a pattern with such a sequence is equivalent to setting the relevant +option. This feature is not Perl-compatible. How setting a UTF mode affects pattern matching is mentioned in several places below. There is also a summary -of UTF-8 features in the +of features in the pcreunicode page.

    Another special sequence that may appear at the start of a pattern or in -combination with (*UTF8) is: +combination with (*UTF8) or (*UTF16) is:

       (*UCP)
     
    @@ -94,13 +97,13 @@ of newlines; they are described below.

    The remainder of this document discusses the patterns that are supported by -PCRE when its main matching function, pcre_exec(), is used. -From release 6.0, PCRE offers a second matching function, -pcre_dfa_exec(), which matches using a different algorithm that is not -Perl-compatible. Some of the features discussed below are not available when -pcre_dfa_exec() is used. The advantages and disadvantages of the -alternative function, and how it differs from the normal function, are -discussed in the +PCRE when one its main matching functions, pcre_exec() (8-bit) or +pcre16_exec() (16-bit), is used. PCRE also has alternative matching +functions, pcre_dfa_exec() and pcre16_dfa_exec(), which match using +a different algorithm that is not Perl-compatible. Some of the features +discussed below are not available when DFA matching is used. The advantages and +disadvantages of the alternative functions, and how they differ from the normal +functions, are discussed in the pcrematching page.

    @@ -126,9 +129,8 @@ string with one of the following five sequences: (*ANYCRLF) any of the three above (*ANY) all Unicode newline sequences -These override the default and the options given to pcre_compile() or -pcre_compile2(). For example, on a Unix system where LF is the default -newline sequence, the pattern +These override the default and the options given to the compiling function. For +example, on a Unix system where LF is the default newline sequence, the pattern
       (*CR)a.b
     
    @@ -158,13 +160,13 @@ corresponding characters in the subject. As a trivial matches a portion of a subject string that is identical to itself. When caseless matching is specified (the PCRE_CASELESS option), letters are matched -independently of case. In UTF-8 mode, PCRE always understands the concept of +independently of case. In a UTF mode, PCRE always understands the concept of case for characters whose values are less than 128, so caseless matching is always possible. For characters with higher values, the concept of case is supported if PCRE is compiled with Unicode property support, but not otherwise. If you want to use caseless matching for characters 128 and above, you must ensure that PCRE is compiled with Unicode property support as well as with -UTF-8 support. +UTF support.

    The power of regular expressions comes from the ability to include alternatives @@ -220,15 +222,15 @@ non-alphanumeric with backslash to specify that it sta particular, if you want to match a backslash, you write \\.

    -In UTF-8 mode, only ASCII numbers and letters have any special meaning after a +In a UTF mode, only ASCII numbers and letters have any special meaning after a backslash. All other characters (in particular, those whose codepoints are greater than 127) are treated as literals.

    -If a pattern is compiled with the PCRE_EXTENDED option, whitespace in the +If a pattern is compiled with the PCRE_EXTENDED option, white space in the pattern (other than in a character class) and characters between a # outside a character class and the next newline are ignored. An escaping backslash can -be used to include a whitespace or # character as part of the pattern. +be used to include a white space or # character as part of the pattern.

    If you want to remove the special meaning from a sequence of characters, you @@ -262,7 +264,7 @@ one of the following escape sequences than the binary \a alarm, that is, the BEL character (hex 07) \cx "control-x", where x is any ASCII character \e escape (hex 1B) - \f formfeed (hex 0C) + \f form feed (hex 0C) \n linefeed (hex 0A) \r carriage return (hex 0D) \t tab (hex 09) @@ -276,17 +278,22 @@ is converted to upper case. Then bit 6 of the characte Thus \cz becomes hex 1A (z is 7A), but \c{ becomes hex 3B ({ is 7B), while \c; becomes hex 7B (; is 3B). If the byte following \c has a value greater than 127, a compile-time error occurs. This locks out non-ASCII characters in -both byte mode and UTF-8 mode. (When PCRE is compiled in EBCDIC mode, all byte -values are valid. A lower case letter is converted to upper case, and then the -0xc0 bits are flipped.) +all modes. (When PCRE is compiled in EBCDIC mode, all byte values are valid. A +lower case letter is converted to upper case, and then the 0xc0 bits are +flipped.)

    By default, after \x, from zero to two hexadecimal digits are read (letters can be in upper or lower case). Any number of hexadecimal digits may appear -between \x{ and }, but the value of the character code must be less than 256 -in non-UTF-8 mode, and less than 2**31 in UTF-8 mode. That is, the maximum -value in hexadecimal is 7FFFFFFF. Note that this is bigger than the largest -Unicode code point, which is 10FFFF. +between \x{ and }, but the character code is constrained as follows: +

    +  8-bit non-UTF mode    less than 0x100
    +  8-bit UTF-8 mode      less than 0x10ffff and a valid codepoint
    +  16-bit non-UTF mode   less than 0x10000
    +  16-bit UTF-16 mode    less than 0x10ffff and a valid codepoint
    +
    +Invalid Unicode codepoints are the range 0xd800 to 0xdfff (the so-called +"surrogate" codepoints).

    If characters other than hexadecimal digits appear between \x{ and }, or if @@ -300,6 +307,8 @@ as just described only when it is followed by two hexa Otherwise, it matches a literal "x" character. In JavaScript mode, support for code points greater than 256 is provided by \u, which must be followed by four hexadecimal digits; otherwise it matches a literal "u" character. +Character codes specified by \u in JavaScript mode are constrained in the same +was as those specified by \x in non-JavaScript mode.

    Characters whose value is less than 256 can be defined by either of the two @@ -328,9 +337,9 @@ following the discussion of Inside a character class, or if the decimal number is greater than 9 and there have not been that many capturing subpatterns, PCRE re-reads up to three octal digits following the backslash, and uses them to generate a data character. Any -subsequent digits stand for themselves. In non-UTF-8 mode, the value of a -character specified in octal must be less than \400. In UTF-8 mode, values up -to \777 are permitted. For example: +subsequent digits stand for themselves. The value of the character is +constrained in the same way as characters specified in hexadecimal. +For example:

       \040   is another way of writing a space
       \40    is the same, provided there are fewer than 40 previous capturing subpatterns
    @@ -339,7 +348,7 @@ to \777 are permitted. For example:
       \011   is always a tab
       \0113  is a tab followed by the character "3"
       \113   might be a back reference, otherwise the character with octal code 113
    -  \377   might be a back reference, otherwise the byte consisting entirely of 1 bits
    +  \377   might be a back reference, otherwise the value 255 (decimal)
       \81    is either a back reference, or a binary zero followed by the two characters "8" and "1"
     
    Note that octal values of 100 or greater must not be introduced by a leading @@ -399,12 +408,12 @@ Another use of backslash is for specifying generic cha
       \d     any decimal digit
       \D     any character that is not a decimal digit
    -  \h     any horizontal whitespace character
    -  \H     any character that is not a horizontal whitespace character
    -  \s     any whitespace character
    -  \S     any character that is not a whitespace character
    -  \v     any vertical whitespace character
    -  \V     any character that is not a vertical whitespace character
    +  \h     any horizontal white space character
    +  \H     any character that is not a horizontal white space character
    +  \s     any white space character
    +  \S     any character that is not a white space character
    +  \v     any vertical white space character
    +  \V     any character that is not a vertical white space character
       \w     any "word" character
       \W     any "non-word" character
     
    @@ -443,9 +452,9 @@ accented letters, and these are then matched by \w. Th Unicode is discouraged.

    -By default, in UTF-8 mode, characters with values greater than 128 never match +By default, in a UTF mode, characters with values greater than 128 never match \d, \s, or \w, and always match \D, \S, and \W. These sequences retain -their original meanings from before UTF-8 support was available, mainly for +their original meanings from before UTF support was available, mainly for efficiency reasons. However, if PCRE is compiled with Unicode property support, and the PCRE_UCP option is set, the behaviour is changed so that Unicode properties are used to determine character types, as follows: @@ -463,9 +472,8 @@ is noticeably slower when PCRE_UCP is set.

    The sequences \h, \H, \v, and \V are features that were added to Perl at release 5.10. In contrast to the other sequences, which match only ASCII -characters by default, these always match certain high-valued codepoints in -UTF-8 mode, whether or not PCRE_UCP is set. The horizontal space characters -are: +characters by default, these always match certain high-valued codepoints, +whether or not PCRE_UCP is set. The horizontal space characters are:

       U+0009     Horizontal tab
       U+0020     Space
    @@ -491,19 +499,22 @@ The vertical space characters are:
     
       U+000A     Linefeed
       U+000B     Vertical tab
    -  U+000C     Formfeed
    +  U+000C     Form feed
       U+000D     Carriage return
       U+0085     Next line
       U+2028     Line separator
       U+2029     Paragraph separator
    -
    -

    +
    +In 8-bit, non-UTF-8 mode, only the characters with codepoints less than 256 are +relevant. +


    Newline sequences

    Outside a character class, by default, the escape sequence \R matches any -Unicode newline sequence. In non-UTF-8 mode \R is equivalent to the following: +Unicode newline sequence. In 8-bit non-UTF-8 mode \R is equivalent to the +following:

       (?>\r\n|\n|\x0b|\f|\r|\x85)
     
    @@ -511,12 +522,12 @@ This is an example of an "atomic group", details of wh below. This particular group matches either the two-character sequence CR followed by LF, or one of the single characters LF (linefeed, U+000A), VT (vertical tab, -U+000B), FF (formfeed, U+000C), CR (carriage return, U+000D), or NEL (next +U+000B), FF (form feed, U+000C), CR (carriage return, U+000D), or NEL (next line, U+0085). The two-character sequence is treated as a single unit that cannot be split.

    -In UTF-8 mode, two additional characters whose codepoints are greater than 255 +In other modes, two additional characters whose codepoints are greater than 255 are added: LS (line separator, U+2028) and PS (paragraph separator, U+2029). Unicode character property support is not needed for these characters to be recognized. @@ -533,19 +544,19 @@ one of the following sequences: (*BSR_ANYCRLF) CR, LF, or CRLF only (*BSR_UNICODE) any Unicode newline sequence -These override the default and the options given to pcre_compile() or -pcre_compile2(), but they can be overridden by options given to -pcre_exec() or pcre_dfa_exec(). Note that these special settings, -which are not Perl-compatible, are recognized only at the very start of a -pattern, and that they must be in upper case. If more than one of them is -present, the last one is used. They can be combined with a change of newline -convention; for example, a pattern can start with: +These override the default and the options given to the compiling function, but +they can themselves be overridden by options given to a matching function. Note +that these special settings, which are not Perl-compatible, are recognized only +at the very start of a pattern, and that they must be in upper case. If more +than one of them is present, the last one is used. They can be combined with a +change of newline convention; for example, a pattern can start with:

       (*ANY)(*BSR_ANYCRLF)
     
    -They can also be combined with the (*UTF8) or (*UCP) special sequences. Inside -a character class, \R is treated as an unrecognized escape sequence, and so -matches the letter "R" by default, but causes an error if PCRE_EXTRA is set. +They can also be combined with the (*UTF8), (*UTF16), or (*UCP) special +sequences. Inside a character class, \R is treated as an unrecognized escape +sequence, and so matches the letter "R" by default, but causes an error if +PCRE_EXTRA is set.


    Unicode character properties @@ -553,7 +564,7 @@ Unicode character properties

    When PCRE is built with Unicode character property support, three additional escape sequences that match characters with specific properties are available. -When not in UTF-8 mode, these sequences are of course limited to testing +When in 8-bit non-UTF-8 mode, these sequences are of course limited to testing characters whose codepoints are less than 256, but they do work in this mode. The extra escape sequences are:

    @@ -587,13 +598,16 @@ Armenian,
     Avestan,
     Balinese,
     Bamum,
    +Batak,
     Bengali,
     Bopomofo,
    +Brahmi,
     Braille,
     Buginese,
     Buhid,
     Canadian_Aboriginal,
     Carian,
    +Chakma,
     Cham,
     Cherokee,
     Common,
    @@ -636,7 +650,11 @@ Lisu,
     Lycian,
     Lydian,
     Malayalam,
    +Mandaic,
     Meetei_Mayek,
    +Meroitic_Cursive,
    +Meroitic_Hieroglyphs,
    +Miao,
     Mongolian,
     Myanmar,
     New_Tai_Lue,
    @@ -655,8 +673,10 @@ Rejang,
     Runic,
     Samaritan,
     Saurashtra,
    +Sharada,
     Shavian,
     Sinhala,
    +Sora_Sompeng,
     Sundanese,
     Syloti_Nagri,
     Syriac,
    @@ -665,6 +685,7 @@ Tagbanwa,
     Tai_Le,
     Tai_Tham,
     Tai_Viet,
    +Takri,
     Tamil,
     Telugu,
     Thaana,
    @@ -742,9 +763,9 @@ a modifier or "other".
     

    The Cs (Surrogate) property applies only to characters in the range U+D800 to -U+DFFF. Such characters are not valid in UTF-8 strings (see RFC 3629) and so -cannot be tested by PCRE, unless UTF-8 validity checking has been turned off -(see the discussion of PCRE_NO_UTF8_CHECK in the +U+DFFF. Such characters are not valid in Unicode strings and so +cannot be tested by PCRE, unless UTF validity checking has been turned off +(see the discussion of PCRE_NO_UTF8_CHECK and PCRE_NO_UTF16_CHECK in the pcreapi page). Perl does not support the Cs property.

    @@ -774,7 +795,7 @@ atomic group (see below). Characters with the "mark" property are typically accents that affect the preceding character. None of them have codepoints less than 256, so in -non-UTF-8 mode \X matches any one character. +8-bit non-UTF-8 mode \X matches any one character.

    Note that recent versions of Perl have changed \X to match what Unicode calls @@ -785,8 +806,7 @@ Matching characters by Unicode property is not fast, b a structure that contains data for over fifteen thousand characters. That is why the traditional escape sequences such as \d and \w do not use Unicode properties in PCRE by default, though you can make them do so by setting the -PCRE_UCP option for pcre_compile() or by starting the pattern with -(*UCP). +PCRE_UCP option or by starting the pattern with (*UCP).


    PCRE's additional properties @@ -804,7 +824,7 @@ PCRE_UCP is set. They are: Xwd Any Perl "word" character
    Xan matches characters that have either the L (letter) or the N (number) -property. Xps matches the characters tab, linefeed, vertical tab, formfeed, or +property. Xps matches the characters tab, linefeed, vertical tab, form feed, or carriage return, and any other character that has the Z (separator) property. Xsp is the same as Xps, except that vertical tab is excluded. Xwd matches the same characters as Xan, plus underscore. @@ -865,7 +885,7 @@ escape sequence" error is generated instead. A word boundary is a position in the subject string where the current character and the previous character do not both match \w or \W (i.e. one matches \w and the other matches \W), or the start or end of the string if the -first or last character matches \w, respectively. In UTF-8 mode, the meanings +first or last character matches \w, respectively. In a UTF mode, the meanings of \w and \W can be changed by setting the PCRE_UCP option. When this is done, it also affects \b and \B. Neither PCRE nor Perl has a separate "start of word" or "end of word" metasequence. However, whatever follows \b normally @@ -962,7 +982,7 @@ end of the subject in both modes, and if all branches

    Outside a character class, a dot in the pattern matches any one character in the subject string except (by default) a character that signifies the end of a -line. In UTF-8 mode, the matched character may be more than one byte long. +line.

    When a line ending is defined as a single character, dot never matches that @@ -989,29 +1009,31 @@ the PCRE_DOTALL option. In other words, it matches any that signifies the end of a line. Perl also uses \N to match characters by name; PCRE does not support this.

    -
    MATCHING A SINGLE BYTE
    +
    MATCHING A SINGLE DATA UNIT

    -Outside a character class, the escape sequence \C matches any one byte, both -in and out of UTF-8 mode. Unlike a dot, it always matches line-ending -characters. The feature is provided in Perl in order to match individual bytes -in UTF-8 mode, but it is unclear how it can usefully be used. Because \C -breaks up characters into individual bytes, matching one byte with \C in UTF-8 -mode means that the rest of the string may start with a malformed UTF-8 -character. This has undefined results, because PCRE assumes that it is dealing -with valid UTF-8 strings (and by default it checks this at the start of -processing unless the PCRE_NO_UTF8_CHECK option is used). +Outside a character class, the escape sequence \C matches any one data unit, +whether or not a UTF mode is set. In the 8-bit library, one data unit is one +byte; in the 16-bit library it is a 16-bit unit. Unlike a dot, \C always +matches line-ending characters. The feature is provided in Perl in order to +match individual bytes in UTF-8 mode, but it is unclear how it can usefully be +used. Because \C breaks up characters into individual data units, matching one +unit with \C in a UTF mode means that the rest of the string may start with a +malformed UTF character. This has undefined results, because PCRE assumes that +it is dealing with valid UTF strings (and by default it checks this at the +start of processing unless the PCRE_NO_UTF8_CHECK or PCRE_NO_UTF16_CHECK option +is used).

    PCRE does not allow \C to appear in lookbehind assertions (described below) -in UTF-8 mode, because this would make it impossible to calculate the length of +in a UTF mode, because this would make it impossible to calculate the length of the lookbehind.

    -In general, the \C escape sequence is best avoided in UTF-8 mode. However, one -way of using it that avoids the problem of malformed UTF-8 characters is to -use a lookahead to check the length of the next character, as in this pattern -(ignore white space and line breaks): +In general, the \C escape sequence is best avoided. However, one +way of using it that avoids the problem of malformed UTF characters is to use a +lookahead to check the length of the next character, as in this pattern, which +could be used with a UTF-8 string (ignore white space and line breaks):

       (?| (?=[\x00-\x7f])(\C) |
           (?=[\x80-\x{7ff}])(\C)(\C) |
    @@ -1036,12 +1058,12 @@ a member of the class, it should be the first data cha
     (after an initial circumflex, if present) or escaped with a backslash.
     

    -A character class matches a single character in the subject. In UTF-8 mode, the -character may be more than one byte long. A matched character must be in the -set of characters defined by the class, unless the first character in the class -definition is a circumflex, in which case the subject character must not be in -the set defined by the class. If a circumflex is actually required as a member -of the class, ensure it is not the first character, or escape it with a +A character class matches a single character in the subject. In a UTF mode, the +character may be more than one data unit long. A matched character must be in +the set of characters defined by the class, unless the first character in the +class definition is a circumflex, in which case the subject character must not +be in the set defined by the class. If a circumflex is actually required as a +member of the class, ensure it is not the first character, or escape it with a backslash.

    @@ -1054,20 +1076,21 @@ string, and therefore it fails if the current pointer string.

    -In UTF-8 mode, characters with values greater than 255 can be included in a -class as a literal string of bytes, or by using the \x{ escaping mechanism. +In UTF-8 (UTF-16) mode, characters with values greater than 255 (0xffff) can be +included in a class as a literal string of data units, or by using the \x{ +escaping mechanism.

    When caseless matching is set, any letters in a class represent both their upper case and lower case versions, so for example, a caseless [aeiou] matches "A" as well as "a", and a caseless [^aeiou] does not match "A", whereas a -caseful version would. In UTF-8 mode, PCRE always understands the concept of +caseful version would. In a UTF mode, PCRE always understands the concept of case for characters whose values are less than 128, so caseless matching is always possible. For characters with higher values, the concept of case is supported if PCRE is compiled with Unicode property support, but not otherwise. -If you want to use caseless matching in UTF8-mode for characters 128 and above, -you must ensure that PCRE is compiled with Unicode property support as well as -with UTF-8 support. +If you want to use caseless matching in a UTF mode for characters 128 and +above, you must ensure that PCRE is compiled with Unicode property support as +well as with UTF support.

    Characters that might indicate line breaks are never treated in any special way @@ -1093,16 +1116,15 @@ followed by two other characters. The octal or hexadec

    Ranges operate in the collating sequence of character values. They can also be -used for characters specified numerically, for example [\000-\037]. In UTF-8 -mode, ranges can include characters whose values are greater than 255, for -example [\x{100}-\x{2ff}]. +used for characters specified numerically, for example [\000-\037]. Ranges +can include any characters that are valid for the current mode.

    If a range that includes letters is used when caseless matching is set, it matches the letters in either case. For example, [W-c] is equivalent to -[][\\^_`wxyzabc], matched caselessly, and in non-UTF-8 mode, if character +[][\\^_`wxyzabc], matched caselessly, and in a non-UTF mode, if character tables for a French locale are in use, [\xc8-\xcb] matches accented E -characters in both cases. In UTF-8 mode, PCRE supports the concept of case for +characters in both cases. In UTF modes, PCRE supports the concept of case for characters with values greater than 128 only when it is compiled with Unicode property support.

    @@ -1110,7 +1132,7 @@ property support. The character escape sequences \d, \D, \h, \H, \p, \P, \s, \S, \v, \V, \w, and \W may appear in a character class, and add the characters that they match to the class. For example, [\dABCDEF] matches any hexadecimal -digit. In UTF-8 mode, the PCRE_UCP option affects the meanings of \d, \s, \w +digit. In UTF modes, the PCRE_UCP option affects the meanings of \d, \s, \w and their upper case partners, just as it does when they appear outside a character class, as described in the section entitled "Generic character types" @@ -1179,7 +1201,7 @@ syntax [.ch.] and [=ch=] where "ch" is a "collating el supported, and an error is given if they are encountered.

    -By default, in UTF-8 mode, characters with values greater than 128 do not match +By default, in UTF modes, characters with values greater than 128 do not match any of the POSIX character classes. However, if the PCRE_UCP option is passed to pcre_compile(), some of the classes are changed so that Unicode character properties are used. This is achieved by replacing the POSIX classes @@ -1264,14 +1286,14 @@ behaviour otherwise.

    Note: There are other PCRE-specific options that can be set by the -application when the compile or match functions are called. In some cases the -pattern can contain special leading sequences such as (*CRLF) to override what -the application has set or what has been defaulted. Details are given in the -section entitled +application when the compiling or matching functions are called. In some cases +the pattern can contain special leading sequences such as (*CRLF) to override +what the application has set or what has been defaulted. Details are given in +the section entitled "Newline sequences" -above. There are also the (*UTF8) and (*UCP) leading sequences that can be used -to set UTF-8 and Unicode property modes; they are equivalent to setting the -PCRE_UTF8 and the PCRE_UCP options, respectively. +above. There are also the (*UTF8), (*UTF16), and (*UCP) leading sequences that +can be used to set UTF and Unicode property modes; they are equivalent to +setting the PCRE_UTF8, PCRE_UTF16, and the PCRE_UCP options, respectively.


    SUBPATTERNS

    @@ -1289,10 +1311,14 @@ match "cataract", "erpillar" or an empty string.
    2. It sets up the subpattern as a capturing subpattern. This means that, when the whole pattern matches, that portion of the subject string that matched the -subpattern is passed back to the caller via the ovector argument of -pcre_exec(). Opening parentheses are counted from left to right (starting -from 1) to obtain numbers for the capturing subpatterns. For example, if the -string "the red king" is matched against the pattern +subpattern is passed back to the caller via the ovector argument of the +matching function. (This applies only to the traditional matching functions; +the DFA matching functions do not support capturing.) +

    +

    +Opening parentheses are counted from left to right (starting from 1) to obtain +numbers for the capturing subpatterns. For example, if the string "the red +king" is matched against the pattern

       the ((red|white) (king|queen))
     
    @@ -1452,7 +1478,7 @@ items: a literal data character the dot metacharacter the \C escape sequence - the \X escape sequence (in UTF-8 mode with Unicode properties) + the \X escape sequence the \R escape sequence an escape such as \d or \pL that matches a single character a character class @@ -1484,11 +1510,11 @@ quantifier, is taken as a literal character. For examp quantifier, but a literal string of four characters.

    -In UTF-8 mode, quantifiers apply to UTF-8 characters rather than to individual -bytes. Thus, for example, \x{100}{2} matches two UTF-8 characters, each of -which is represented by a two-byte sequence. Similarly, when Unicode property -support is available, \X{3} matches three Unicode extended sequences, each of -which may be several bytes long (and they may be of different lengths). +In UTF modes, quantifiers apply to characters rather than to individual data +units. Thus, for example, \x{100}{2} matches two characters, each of +which is represented by a two-byte sequence in a UTF-8 string. Similarly, +\X{3} matches three Unicode extended sequences, each of which may be several +data units long (and they may be of different lengths).

    The quantifier {0} is permitted, causing the expression to behave as if the @@ -1805,7 +1831,7 @@ Because there may be many capturing parentheses in a p following a backslash are taken as part of a potential back reference number. If the pattern continues with a digit character, some delimiter must be used to terminate the back reference. If the PCRE_EXTENDED option is set, this can be -whitespace. Otherwise, the \g{ syntax or an empty comment (see +white space. Otherwise, the \g{ syntax or an empty comment (see "Comments" below) can be used.

    @@ -1950,10 +1976,11 @@ match. If there are insufficient characters before the assertion fails.

    -In UTF-8 mode, PCRE does not allow the \C escape (which matches a single byte, -even in UTF-8 mode) to appear in lookbehind assertions, because it makes it -impossible to calculate the length of the lookbehind. The \X and \R escapes, -which can match different numbers of bytes, are also not permitted. +In a UTF mode, PCRE does not allow the \C escape (which matches a single data +unit even in a UTF mode) to appear in lookbehind assertions, because it makes +it impossible to calculate the length of the lookbehind. The \X and \R +escapes, which can match different numbers of data units, are also not +permitted.

    "Subroutine" @@ -2146,7 +2173,7 @@ point in the pattern; the idea of DEFINE is that it ca subroutines that can be referenced from elsewhere. (The use of subroutines is described below.) For example, a pattern to match an IPv4 address such as -"192.168.23.245" could be written like this (ignore whitespace and line +"192.168.23.245" could be written like this (ignore white space and line breaks):

       (?(DEFINE) (?<byte> 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
    @@ -2192,7 +2219,7 @@ closing parenthesis. Nested parentheses are not permit
     option is set, an unescaped # character also introduces a comment, which in
     this case continues to immediately after the next newline character or
     character sequence in the pattern. Which characters are interpreted as newlines
    -is controlled by the options passed to pcre_compile() or by a special
    +is controlled by the options passed to a compiling function or by a special
     sequence at the start of the pattern, as described in the section entitled
     "Newline conventions"
     above. Note that the end of this type of comment is a literal newline sequence
    @@ -2491,8 +2518,9 @@ same pair of parentheses when there is a repetition.
     

    PCRE provides a similar feature, but of course it cannot obey arbitrary Perl code. The feature is called "callout". The caller of PCRE provides an external -function by putting its entry point in the global variable pcre_callout. -By default, this variable contains NULL, which disables all calling out. +function by putting its entry point in the global variable pcre_callout +(8-bit library) or pcre16_callout (16-bit library). By default, this +variable contains NULL, which disables all calling out.

    Within a regular expression, (?C) indicates the points at which the external @@ -2502,17 +2530,17 @@ For example, this pattern has two callout points:

       (?C1)abc(?C2)def
     
    -If the PCRE_AUTO_CALLOUT flag is passed to pcre_compile(), callouts are +If the PCRE_AUTO_CALLOUT flag is passed to a compiling function, callouts are automatically installed before each item in the pattern. They are all numbered 255.

    -During matching, when PCRE reaches a callout point (and pcre_callout is -set), the external function is called. It is provided with the number of the -callout, the position in the pattern, and, optionally, one item of data -originally supplied by the caller of pcre_exec(). The callout function -may cause matching to proceed, to backtrack, or to fail altogether. A complete -description of the interface to the callout function is given in the +During matching, when PCRE reaches a callout point, the external function is +called. It is provided with the number of the callout, the position in the +pattern, and, optionally, one item of data originally supplied by the caller of +the matching function. The callout function may cause matching to proceed, to +backtrack, or to fail altogether. A complete description of the interface to +the callout function is given in the pcrecallout documentation.

    @@ -2526,10 +2554,10 @@ remarks apply to the PCRE features described in this s

    Since these verbs are specifically related to backtracking, most of them can be -used only when the pattern is to be matched using pcre_exec(), which uses -a backtracking algorithm. With the exception of (*FAIL), which behaves like a -failing negative assertion, they cause an error if encountered by -pcre_dfa_exec(). +used only when the pattern is to be matched using one of the traditional +matching functions, which use a backtracking algorithm. With the exception of +(*FAIL), which behaves like a failing negative assertion, they cause an error +if encountered by a DFA matching function.

    If any of these verbs are used in an assertion or in a subpattern that is @@ -2539,18 +2567,22 @@ exception: the name from a *(MARK), (*PRUNE), or (*THE a successful positive assertion is passed back when a match succeeds (compare capturing parentheses in assertions). Note that such subpatterns are processed as anchored at the point where they are tested. Note also that Perl's -treatment of subroutines is different in some cases. +treatment of subroutines and assertions is different in some cases.

    The new verbs make use of what was previously invalid syntax: an opening parenthesis followed by an asterisk. They are generally of the form (*VERB) or (*VERB:NAME). Some may take either form, with differing behaviour, depending on whether or not an argument is present. A name is any sequence of -characters that does not include a closing parenthesis. If the name is empty, -that is, if the closing parenthesis immediately follows the colon, the effect -is as if the colon were not there. Any number of these verbs may occur in a -pattern. -

    +characters that does not include a closing parenthesis. The maximum length of +name is 255 in the 8-bit library and 65535 in the 16-bit library. If the name +is empty, that is, if the closing parenthesis immediately follows the colon, +the effect is as if the colon were not there. Any number of these verbs may +occur in a pattern. +

    +
    +Optimizations that affect backtracking verbs +

    PCRE contains some optimizations that are used to speed up matching by running some checks at the start of each match attempt. For example, it may know the @@ -2559,7 +2591,12 @@ present. When one of these optimizations suppresses th included backtracking verbs will not, of course, be processed. You can suppress the start-of-match optimizations by setting the PCRE_NO_START_OPTIMIZE option when calling pcre_compile() or pcre_exec(), or by starting the -pattern with (*NO_START_OPT). +pattern with (*NO_START_OPT). There is more discussion of this option in the +section entitled +"Option bits for pcre_exec()" +in the +pcreapi +documentation.

    Experiments with Perl suggest that it too has similar optimizations, sometimes @@ -2613,9 +2650,8 @@ A name is always required with this verb. There may be

    When a match succeeds, the name of the last-encountered (*MARK) on the matching -path is passed back to the caller via the pcre_extra data structure, as -described in the -section on pcre_extra +path is passed back to the caller as described in the section entitled +"Extra data for pcre_exec()" in the pcreapi documentation. Here is an example of pcretest output, where the /K @@ -2648,10 +2684,16 @@ After a partial match or a failed match, the name of t No match, mark = B

    Note that in this unanchored example the mark is retained from the match -attempt that started at the letter "X". Subsequent match attempts starting at -"P" and then with an empty string do not get as far as the (*MARK) item, but -nevertheless do not reset it. +attempt that started at the letter "X" in the subject. Subsequent match +attempts starting at "P" and then with an empty string do not get as far as the +(*MARK) item, but nevertheless do not reset it.

    +

    +If you are interested in (*MARK) values after failed matches, you should +probably set the PCRE_NO_START_OPTIMIZE option +(see above) +to ensure that the match is always attempted. +


    Verbs that act after backtracking
    @@ -2816,7 +2858,7 @@ overrides.
    SEE ALSO

    pcreapi(3), pcrecallout(3), pcrematching(3), -pcresyntax(3), pcre(3). +pcresyntax(3), pcre(3), pcre16(3).


    AUTHOR

    @@ -2829,9 +2871,9 @@ Cambridge CB2 3QH, England.


    REVISION

    -Last updated: 29 November 2011 +Last updated: 17 June 2012
    -Copyright © 1997-2011 University of Cambridge. +Copyright © 1997-2012 University of Cambridge.

    Return to the PCRE index page.