--- embedaddon/pcre/doc/html/pcrepattern.html 2012/02/21 23:05:52 1.1 +++ embedaddon/pcre/doc/html/pcrepattern.html 2012/02/21 23:50:25 1.1.1.2 @@ -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,7 +222,7 @@ 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.

    @@ -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 @@ -328,9 +335,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 +346,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 @@ -443,9 +450,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 +470,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
    @@ -496,14 +502,17 @@ The vertical space characters are:
       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)
     
    @@ -516,7 +525,7 @@ line, U+0085). The two-character sequence is treated a 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 +542,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 +562,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:

    @@ -742,9 +751,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 +783,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 +794,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 @@ -865,7 +873,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 +970,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 +997,30 @@ 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 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 +1045,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 +1063,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 +1103,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 +1119,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 +1188,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 +1273,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 +1298,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 +1465,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 +1497,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 @@ -1950,10 +1963,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" @@ -2192,7 +2206,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 +2505,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 +2517,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 +2541,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 @@ -2613,9 +2628,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 @@ -2816,7 +2830,7 @@ overrides.
    SEE ALSO

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


    AUTHOR

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


    REVISION

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

    Return to the PCRE index page.