5 |
.rs |
.rs |
6 |
.sp |
.sp |
7 |
This document describes the differences in the ways that PCRE and Perl handle |
This document describes the differences in the ways that PCRE and Perl handle |
8 |
regular expressions. The differences described here are mainly with respect to |
regular expressions. The differences described here are with respect to Perl |
9 |
Perl 5.8, though PCRE versions 7.0 and later contain some features that are |
versions 5.10 and above. |
|
expected to be in the forthcoming Perl 5.10. |
|
10 |
.P |
.P |
11 |
1. PCRE has only a subset of Perl's UTF-8 and Unicode support. Details of what |
1. PCRE has only a subset of Perl's UTF-8 and Unicode support. Details of what |
12 |
it does have are given in the |
it does have are given in the |
20 |
.\" |
.\" |
21 |
page. |
page. |
22 |
.P |
.P |
23 |
2. PCRE does not allow repeat quantifiers on lookahead assertions. Perl permits |
2. PCRE does not allow repeat quantifiers on assertions. Perl permits them, but |
24 |
them, but they do not mean what you might think. For example, (?!a){3} does |
they do not mean what you might think. For example, (?!a){3} does not assert |
25 |
not assert that the next three characters are not "a". It just asserts that the |
that the next three characters are not "a". It just asserts that the next |
26 |
next character is not "a" three times. |
character is not "a" three times. |
27 |
.P |
.P |
28 |
3. Capturing subpatterns that occur inside negative lookahead assertions are |
3. Capturing subpatterns that occur inside negative lookahead assertions are |
29 |
counted, but their entries in the offsets vector are never set. Perl sets its |
counted, but their entries in the offsets vector are never set. Perl sets its |
37 |
represent a binary zero. |
represent a binary zero. |
38 |
.P |
.P |
39 |
5. The following Perl escape sequences are not supported: \el, \eu, \eL, |
5. The following Perl escape sequences are not supported: \el, \eu, \eL, |
40 |
\eU, and \eN. In fact these are implemented by Perl's general string-handling |
\eU, and \eN when followed by a character name or Unicode value. (\eN on its |
41 |
and are not part of its pattern matching engine. If any of these are |
own, matching a non-newline character, is supported.) In fact these are |
42 |
encountered by PCRE, an error is generated. |
implemented by Perl's general string-handling and are not part of its pattern |
43 |
|
matching engine. If any of these are encountered by PCRE, an error is |
44 |
|
generated. |
45 |
.P |
.P |
46 |
6. The Perl escape sequences \ep, \eP, and \eX are supported only if PCRE is |
6. The Perl escape sequences \ep, \eP, and \eX are supported only if PCRE is |
47 |
built with Unicode character property support. The properties that can be |
built with Unicode character property support. The properties that can be |
48 |
tested with \ep and \eP are limited to the general category properties such as |
tested with \ep and \eP are limited to the general category properties such as |
49 |
Lu and Nd, script names such as Greek or Han, and the derived properties Any |
Lu and Nd, script names such as Greek or Han, and the derived properties Any |
50 |
and L&. |
and L&. PCRE does support the Cs (surrogate) property, which Perl does not; the |
51 |
|
Perl documentation says "Because Perl hides the need for the user to understand |
52 |
|
the internal representation of Unicode characters, there is no need to |
53 |
|
implement the somewhat messy concept of surrogates." |
54 |
|
.P |
55 |
|
7. PCRE implements a simpler version of \eX than Perl, which changed to make |
56 |
|
\eX match what Unicode calls an "extended grapheme cluster". This is more |
57 |
|
complicated than an extended Unicode sequence, which is what PCRE matches. |
58 |
.P |
.P |
59 |
7. PCRE does support the \eQ...\eE escape for quoting substrings. Characters in |
8. PCRE does support the \eQ...\eE escape for quoting substrings. Characters in |
60 |
between are treated as literals. This is slightly different from Perl in that $ |
between are treated as literals. This is slightly different from Perl in that $ |
61 |
and @ are also handled as literals inside the quotes. In Perl, they cause |
and @ are also handled as literals inside the quotes. In Perl, they cause |
62 |
variable interpolation (but of course PCRE does not have variables). Note the |
variable interpolation (but of course PCRE does not have variables). Note the |
72 |
.sp |
.sp |
73 |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
74 |
.P |
.P |
75 |
8. Fairly obviously, PCRE does not support the (?{code}) and (??{code}) |
9. Fairly obviously, PCRE does not support the (?{code}) and (??{code}) |
76 |
constructions. However, there is support for recursive patterns. This is not |
constructions. However, there is support for recursive patterns. This is not |
77 |
available in Perl 5.8, but will be in Perl 5.10. Also, the PCRE "callout" |
available in Perl 5.8, but it is in Perl 5.10. Also, the PCRE "callout" |
78 |
feature allows an external function to be called during pattern matching. See |
feature allows an external function to be called during pattern matching. See |
79 |
the |
the |
80 |
.\" HREF |
.\" HREF |
82 |
.\" |
.\" |
83 |
documentation for details. |
documentation for details. |
84 |
.P |
.P |
85 |
9. Subpatterns that are called recursively or as "subroutines" are always |
10. Subpatterns that are called recursively or as "subroutines" are always |
86 |
treated as atomic groups in PCRE. This is like Python, but unlike Perl. |
treated as atomic groups in PCRE. This is like Python, but unlike Perl. There |
87 |
|
is a discussion of an example that explains this in more detail in the |
88 |
|
.\" HTML <a href="pcrepattern.html#recursiondifference"> |
89 |
|
.\" </a> |
90 |
|
section on recursion differences from Perl |
91 |
|
.\" |
92 |
|
in the |
93 |
|
.\" HREF |
94 |
|
\fBpcrepattern\fP |
95 |
|
.\" |
96 |
|
page. |
97 |
.P |
.P |
98 |
10. There are some differences that are concerned with the settings of captured |
11. There are some differences that are concerned with the settings of captured |
99 |
strings when part of a pattern is repeated. For example, matching "aba" against |
strings when part of a pattern is repeated. For example, matching "aba" against |
100 |
the pattern /^(a(b)?)+$/ in Perl leaves $2 unset, but in PCRE it is set to "b". |
the pattern /^(a(b)?)+$/ in Perl leaves $2 unset, but in PCRE it is set to "b". |
101 |
.P |
.P |
102 |
11. PCRE does support Perl 5.10's backtracking verbs (*ACCEPT), (*FAIL), (*F), |
12. PCRE's handling of duplicate subpattern numbers and duplicate subpattern |
103 |
(*COMMIT), (*PRUNE), (*SKIP), and (*THEN), but only in the forms without an |
names is not as general as Perl's. This is a consequence of the fact the PCRE |
104 |
argument. PCRE does not support (*MARK). If (*ACCEPT) is within capturing |
works internally just with numbers, using an external table to translate |
105 |
parentheses, PCRE does not set that capture group; this is different to Perl. |
between numbers and names. In particular, a pattern such as (?|(?<a>A)|(?<b)B), |
106 |
.P |
where the two capturing parentheses have the same number but different names, |
107 |
12. PCRE provides some extensions to the Perl regular expression facilities. |
is not supported, and causes an error at compile time. If it were allowed, it |
108 |
Perl 5.10 will include new features that are not in earlier versions, some of |
would not be possible to distinguish which parentheses matched, because both |
109 |
which (such as named parentheses) have been in PCRE for some time. This list is |
names map to capturing subpattern number 1. To avoid this confusing situation, |
110 |
with respect to Perl 5.10: |
an error is given at compile time. |
111 |
.sp |
.P |
112 |
(a) Although lookbehind assertions must match fixed length strings, each |
13. Perl recognizes comments in some places that PCRE does not, for example, |
113 |
alternative branch of a lookbehind assertion can match a different length of |
between the ( and ? at the start of a subpattern. If the /x modifier is set, |
114 |
string. Perl requires them all to have the same length. |
Perl allows whitespace between ( and ? but PCRE never does, even if the |
115 |
|
PCRE_EXTENDED option is set. |
116 |
|
.P |
117 |
|
14. PCRE provides some extensions to the Perl regular expression facilities. |
118 |
|
Perl 5.10 includes new features that are not in earlier versions of Perl, some |
119 |
|
of which (such as named parentheses) have been in PCRE for some time. This list |
120 |
|
is with respect to Perl 5.10: |
121 |
|
.sp |
122 |
|
(a) Although lookbehind assertions in PCRE must match fixed length strings, |
123 |
|
each alternative branch of a lookbehind assertion can match a different length |
124 |
|
of string. Perl requires them all to have the same length. |
125 |
.sp |
.sp |
126 |
(b) If PCRE_DOLLAR_ENDONLY is set and PCRE_MULTILINE is not set, the $ |
(b) If PCRE_DOLLAR_ENDONLY is set and PCRE_MULTILINE is not set, the $ |
127 |
meta-character matches only at the very end of the string. |
meta-character matches only at the very end of the string. |
137 |
(e) PCRE_ANCHORED can be used at matching time to force a pattern to be tried |
(e) PCRE_ANCHORED can be used at matching time to force a pattern to be tried |
138 |
only at the first matching position in the subject string. |
only at the first matching position in the subject string. |
139 |
.sp |
.sp |
140 |
(f) The PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, and PCRE_NO_AUTO_CAPTURE |
(f) The PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NOTEMPTY_ATSTART, and |
141 |
options for \fBpcre_exec()\fP have no Perl equivalents. |
PCRE_NO_AUTO_CAPTURE options for \fBpcre_exec()\fP have no Perl equivalents. |
142 |
|
.sp |
143 |
|
(g) The \eR escape sequence can be restricted to match only CR, LF, or CRLF |
144 |
|
by the PCRE_BSR_ANYCRLF option. |
145 |
.sp |
.sp |
146 |
(g) The callout facility is PCRE-specific. |
(h) The callout facility is PCRE-specific. |
147 |
.sp |
.sp |
148 |
(h) The partial matching facility is PCRE-specific. |
(i) The partial matching facility is PCRE-specific. |
149 |
.sp |
.sp |
150 |
(i) Patterns compiled by PCRE can be saved and re-used at a later time, even on |
(j) Patterns compiled by PCRE can be saved and re-used at a later time, even on |
151 |
different hosts that have the other endianness. |
different hosts that have the other endianness. |
152 |
.sp |
.sp |
153 |
(j) The alternative matching function (\fBpcre_dfa_exec()\fP) matches in a |
(k) The alternative matching function (\fBpcre_dfa_exec()\fP) matches in a |
154 |
different way and is not Perl-compatible. |
different way and is not Perl-compatible. |
155 |
|
.sp |
156 |
|
(l) PCRE recognizes some special sequences such as (*CR) at the start of |
157 |
|
a pattern that set overall options that cannot be changed within the pattern. |
158 |
. |
. |
159 |
. |
. |
160 |
.SH AUTHOR |
.SH AUTHOR |
171 |
.rs |
.rs |
172 |
.sp |
.sp |
173 |
.nf |
.nf |
174 |
Last updated: 08 August 2007 |
Last updated: 23 July 2011 |
175 |
Copyright (c) 1997-2007 University of Cambridge. |
Copyright (c) 1997-2011 University of Cambridge. |
176 |
.fi |
.fi |