1<html> 2<head> 3<title>pcre2compat specification</title> 4</head> 5<body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB"> 6<h1>pcre2compat man page</h1> 7<p> 8Return to the <a href="index.html">PCRE2 index page</a>. 9</p> 10<p> 11This page is part of the PCRE2 HTML documentation. It was generated 12automatically from the original man page. If there is any nonsense in it, 13please consult the man page, in case the conversion went wrong. 14<br> 15<br><b> 16DIFFERENCES BETWEEN PCRE2 AND PERL 17</b><br> 18<P> 19This document describes some of the known differences in the ways that PCRE2 20and Perl handle regular expressions. The differences described here are with 21respect to Perl version 5.38.0, but as both Perl and PCRE2 are continually 22changing, the information may at times be out of date. 23</P> 24<P> 251. When PCRE2_DOTALL (equivalent to Perl's /s qualifier) is not set, the 26behaviour of the '.' metacharacter differs from Perl. In PCRE2, '.' matches the 27next character unless it is the start of a newline sequence. This means that, 28if the newline setting is CR, CRLF, or NUL, '.' will match the code point LF 29(0x0A) in ASCII/Unicode environments, and NL (either 0x15 or 0x25) when using 30EBCDIC. In Perl, '.' appears never to match LF, even when 0x0A is not a newline 31indicator. 32</P> 33<P> 342. PCRE2 has only a subset of Perl's Unicode support. Details of what it does 35have are given in the 36<a href="pcre2unicode.html"><b>pcre2unicode</b></a> 37page. 38</P> 39<P> 403. Like Perl, PCRE2 allows repeat quantifiers on parenthesized assertions, but 41they do not mean what you might think. For example, (?!a){3} does not assert 42that the next three characters are not "a". It just asserts that the next 43character is not "a" three times (in principle; PCRE2 optimizes this to run the 44assertion just once). Perl allows some repeat quantifiers on other assertions, 45for example, \b* , but these do not seem to have any use. PCRE2 does not allow 46any kind of quantifier on non-lookaround assertions. 47</P> 48<P> 494. If a braced quantifier such as {1,2} appears where there is nothing to 50repeat (for example, at the start of a branch), PCRE2 raises an error whereas 51Perl treats the quantifier characters as literal. 52</P> 53<P> 545. Capture groups that occur inside negative lookaround assertions are counted, 55but their entries in the offsets vector are set only when a negative assertion 56is a condition that has a matching branch (that is, the condition is false). 57Perl may set such capture groups in other circumstances. 58</P> 59<P> 606. The following Perl escape sequences are not supported: \F, \l, \L, \u, 61\U, and \N when followed by a character name. \N on its own, matching a 62non-newline character, and \N{U+dd..}, matching a Unicode code point, are 63supported. The escapes that modify the case of following letters are 64implemented by Perl's general string-handling and are not part of its pattern 65matching engine. If any of these are encountered by PCRE2, an error is 66generated by default. However, if either of the PCRE2_ALT_BSUX or 67PCRE2_EXTRA_ALT_BSUX options is set, \U and \u are interpreted as ECMAScript 68interprets them. 69</P> 70<P> 717. The Perl escape sequences \p, \P, and \X are supported only if PCRE2 is 72built with Unicode support (the default). The properties that can be tested 73with \p and \P are limited to the general category properties such as Lu and 74Nd, the derived properties Any and LC (synonym L&), script names such as Greek 75or Han, Bidi_Class, Bidi_Control, and a few binary properties. Both PCRE2 and 76Perl support the Cs (surrogate) property, but in PCRE2 its use is limited. See 77the 78<a href="pcre2pattern.html"><b>pcre2pattern</b></a> 79documentation for details. The long synonyms for property names that Perl 80supports (such as \p{Letter}) are not supported by PCRE2, nor is it permitted 81to prefix any of these properties with "Is". 82</P> 83<P> 848. PCRE2 supports the \Q...\E escape for quoting substrings. Characters 85in between are treated as literals. However, this is slightly different from 86Perl in that $ and @ are also handled as literals inside the quotes. In Perl, 87they cause variable interpolation (PCRE2 does not have variables). Also, Perl 88does "double-quotish backslash interpolation" on any backslashes between \Q 89and \E which, its documentation says, "may lead to confusing results". PCRE2 90treats a backslash between \Q and \E just like any other character. Note the 91following examples: 92<pre> 93 Pattern PCRE2 matches Perl matches 94 95 \Qabc$xyz\E abc$xyz abc followed by the contents of $xyz 96 \Qabc\$xyz\E abc\$xyz abc\$xyz 97 \Qabc\E\$\Qxyz\E abc$xyz abc$xyz 98 \QA\B\E A\B A\B 99 \Q\\E \ \\E 100</pre> 101The \Q...\E sequence is recognized both inside and outside character classes 102by both PCRE2 and Perl. 103</P> 104<P> 1059. Fairly obviously, PCRE2 does not support the (?{code}) and (??{code}) 106constructions. However, PCRE2 does have a "callout" feature, which allows an 107external function to be called during pattern matching. See the 108<a href="pcre2callout.html"><b>pcre2callout</b></a> 109documentation for details. 110</P> 111<P> 11210. Subroutine calls (whether recursive or not) were treated as atomic groups 113up to PCRE2 release 10.23, but from release 10.30 this changed, and 114backtracking into subroutine calls is now supported, as in Perl. 115</P> 116<P> 11711. In PCRE2, if any of the backtracking control verbs are used in a group that 118is called as a subroutine (whether or not recursively), their effect is 119confined to that group; it does not extend to the surrounding pattern. This is 120not always the case in Perl. In particular, if (*THEN) is present in a group 121that is called as a subroutine, its action is limited to that group, even if 122the group does not contain any | characters. Note that such groups are 123processed as anchored at the point where they are tested. 124</P> 125<P> 12612. If a pattern contains more than one backtracking control verb, the first 127one that is backtracked onto acts. For example, in the pattern 128A(*COMMIT)B(*PRUNE)C a failure in B triggers (*COMMIT), but a failure in C 129triggers (*PRUNE). Perl's behaviour is more complex; in many cases it is the 130same as PCRE2, but there are cases where it differs. 131</P> 132<P> 13313. There are some differences that are concerned with the settings of captured 134strings when part of a pattern is repeated. For example, matching "aba" against 135the pattern /^(a(b)?)+$/ in Perl leaves $2 unset, but in PCRE2 it is set to 136"b". 137</P> 138<P> 13914. PCRE2's handling of duplicate capture group numbers and names is not as 140general as Perl's. This is a consequence of the fact the PCRE2 works internally 141just with numbers, using an external table to translate between numbers and 142names. In particular, a pattern such as (?|(?<a>A)|(?<b>B)), where the two 143capture groups have the same number but different names, is not supported, and 144causes an error at compile time. If it were allowed, it would not be possible 145to distinguish which group matched, because both names map to capture group 146number 1. To avoid this confusing situation, an error is given at compile time. 147</P> 148<P> 14915. Perl used to recognize comments in some places that PCRE2 does not, for 150example, between the ( and ? at the start of a group. If the /x modifier is 151set, Perl allowed white space between ( and ? though the latest Perls give an 152error (for a while it was just deprecated). There may still be some cases where 153Perl behaves differently. 154</P> 155<P> 15616. Perl, when in warning mode, gives warnings for character classes such as 157[A-\d] or [a-[:digit:]]. It then treats the hyphens as literals. PCRE2 has no 158warning features, so it gives an error in these cases because they are almost 159certainly user mistakes. 160</P> 161<P> 16217. In PCRE2, the upper/lower case character properties Lu and Ll are not 163affected when case-independent matching is specified. For example, \p{Lu} 164always matches an upper case letter. I think Perl has changed in this respect; 165in the release at the time of writing (5.38), \p{Lu} and \p{Ll} match all 166letters, regardless of case, when case independence is specified. 167</P> 168<P> 16918. From release 5.32.0, Perl locks out the use of \K in lookaround 170assertions. From release 10.38 PCRE2 does the same by default. However, there 171is an option for re-enabling the previous behaviour. When this option is set, 172\K is acted on when it occurs in positive assertions, but is ignored in 173negative assertions. 174</P> 175<P> 17619. PCRE2 provides some extensions to the Perl regular expression facilities. 177Perl 5.10 included new features that were not in earlier versions of Perl, some 178of which (such as named parentheses) were in PCRE2 for some time before. This 179list is with respect to Perl 5.38: 180<br> 181<br> 182(a) If PCRE2_DOLLAR_ENDONLY is set and PCRE2_MULTILINE is not set, the $ 183meta-character matches only at the very end of the string. 184<br> 185<br> 186(b) A backslash followed by a letter with no special meaning is faulted. (Perl 187can be made to issue a warning.) 188<br> 189<br> 190(c) If PCRE2_UNGREEDY is set, the greediness of the repetition quantifiers is 191inverted, that is, by default they are not greedy, but if followed by a 192question mark they are. 193<br> 194<br> 195(d) PCRE2_ANCHORED can be used at matching time to force a pattern to be tried 196only at the first matching position in the subject string. 197<br> 198<br> 199(e) The PCRE2_NOTBOL, PCRE2_NOTEOL, PCRE2_NOTEMPTY and PCRE2_NOTEMPTY_ATSTART 200options have no Perl equivalents. 201<br> 202<br> 203(f) The \R escape sequence can be restricted to match only CR, LF, or CRLF 204by the PCRE2_BSR_ANYCRLF option. 205<br> 206<br> 207(g) The callout facility is PCRE2-specific. Perl supports codeblocks and 208variable interpolation, but not general hooks on every match. 209<br> 210<br> 211(h) The partial matching facility is PCRE2-specific. 212<br> 213<br> 214(i) The alternative matching function (<b>pcre2_dfa_match()</b> matches in a 215different way and is not Perl-compatible. 216<br> 217<br> 218(j) PCRE2 recognizes some special sequences such as (*CR) or (*NO_JIT) at 219the start of a pattern. These set overall options that cannot be changed within 220the pattern. 221<br> 222<br> 223(k) PCRE2 supports non-atomic positive lookaround assertions. This is an 224extension to the lookaround facilities. The default, Perl-compatible 225lookarounds are atomic. 226<br> 227<br> 228(l) There are three syntactical items in patterns that can refer to a capturing 229group by number: back references such as \g{2}, subroutine calls such as (?3), 230and condition references such as (?(4)...). PCRE2 supports relative group 231numbers such as +2 and -4 in all three cases. Perl supports both plus and minus 232for subroutine calls, but only minus for back references, and no relative 233numbering at all for conditions. 234</P> 235<P> 23620. Perl has different limits than PCRE2. See the 237<a href="pcre2limit.html"><b>pcre2limit</b></a> 238documentation for details. Perl went with 5.10 from recursion to iteration 239keeping the intermediate matches on the heap, which is ~10% slower but does not 240fall into any stack-overflow limit. PCRE2 made a similar change at release 24110.30, and also has many build-time and run-time customizable limits. 242</P> 243<P> 24421. Unlike Perl, PCRE2 doesn't have character set modifiers and specially no way 245to set characters by context just like Perl's "/d". A regular expression using 246PCRE2_UTF and PCRE2_UCP will use similar rules to Perl's "/u"; something closer 247to "/a" could be selected by adding other PCRE2_EXTRA_ASCII* options on top. 248</P> 249<P> 25022. Some recursive patterns that Perl diagnoses as infinite recursions can be 251handled by PCRE2, either by the interpreter or the JIT. An example is 252/(?:|(?0)abcd)(?(R)|\z)/, which matches a sequence of any number of repeated 253"abcd" substrings at the end of the subject. 254</P> 255<br><b> 256AUTHOR 257</b><br> 258<P> 259Philip Hazel 260<br> 261Retired from University Computing Service 262<br> 263Cambridge, England. 264<br> 265</P> 266<br><b> 267REVISION 268</b><br> 269<P> 270Last updated: 30 November 2023 271<br> 272Copyright © 1997-2023 University of Cambridge. 273<br> 274<p> 275Return to the <a href="index.html">PCRE2 index page</a>. 276</p> 277