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. |
|
in 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 |
68 |
.P |
.P |
69 |
8. Fairly obviously, PCRE does not support the (?{code}) and (??{code}) |
8. Fairly obviously, PCRE does not support the (?{code}) and (??{code}) |
70 |
constructions. However, there is support for recursive patterns. This is not |
constructions. However, there is support for recursive patterns. This is not |
71 |
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" |
72 |
feature allows an external function to be called during pattern matching. See |
feature allows an external function to be called during pattern matching. See |
73 |
the |
the |
74 |
.\" HREF |
.\" HREF |
77 |
documentation for details. |
documentation for details. |
78 |
.P |
.P |
79 |
9. Subpatterns that are called recursively or as "subroutines" are always |
9. Subpatterns that are called recursively or as "subroutines" are always |
80 |
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 |
81 |
|
is a discussion of an example that explains this in more detail in the |
82 |
|
.\" HTML <a href="pcrepattern.html#recursiondifference"> |
83 |
|
.\" </a> |
84 |
|
section on recursion differences from Perl |
85 |
|
.\" |
86 |
|
in the |
87 |
|
.\" HREF |
88 |
|
\fBpcrepattern\fP |
89 |
|
.\" |
90 |
|
page. |
91 |
.P |
.P |
92 |
10. There are some differences that are concerned with the settings of captured |
10. There are some differences that are concerned with the settings of captured |
93 |
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 |
94 |
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". |
95 |
.P |
.P |
96 |
11. PCRE does support Perl 5.10's backtracking verbs (*ACCEPT), (*FAIL), (*F), |
11. PCRE's handling of duplicate subpattern numbers and duplicate subpattern |
97 |
(*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 |
98 |
argument. PCRE does not support (*MARK). |
works internally just with numbers, using an external table to translate |
99 |
.P |
between numbers and names. In particular, a pattern such as (?|(?<a>A)|(?<b)B), |
100 |
12. PCRE provides some extensions to the Perl regular expression facilities. |
where the two capturing parentheses have the same number but different names, |
101 |
Perl 5.10 will include new features that are not in earlier versions, some of |
is not supported, and causes an error at compile time. If it were allowed, it |
102 |
which (such as named parentheses) have been in PCRE for some time. This list is |
would not be possible to distinguish which parentheses matched, because both |
103 |
with respect to Perl 5.10: |
names map to capturing subpattern number 1. To avoid this confusing situation, |
104 |
.sp |
an error is given at compile time. |
105 |
(a) Although lookbehind assertions must match fixed length strings, each |
.P |
106 |
alternative branch of a lookbehind assertion can match a different length of |
12. Perl recognizes comments in some places that PCRE doesn't, for example, |
107 |
string. Perl requires them all to have the same length. |
between the ( and ? at the start of a subpattern. |
108 |
|
.P |
109 |
|
13. PCRE provides some extensions to the Perl regular expression facilities. |
110 |
|
Perl 5.10 includes new features that are not in earlier versions of Perl, some |
111 |
|
of which (such as named parentheses) have been in PCRE for some time. This list |
112 |
|
is with respect to Perl 5.10: |
113 |
|
.sp |
114 |
|
(a) Although lookbehind assertions in PCRE must match fixed length strings, |
115 |
|
each alternative branch of a lookbehind assertion can match a different length |
116 |
|
of string. Perl requires them all to have the same length. |
117 |
.sp |
.sp |
118 |
(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 $ |
119 |
meta-character matches only at the very end of the string. |
meta-character matches only at the very end of the string. |
163 |
.rs |
.rs |
164 |
.sp |
.sp |
165 |
.nf |
.nf |
166 |
Last updated: 16 September 2009 |
Last updated: 31 October 2010 |
167 |
Copyright (c) 1997-2009 University of Cambridge. |
Copyright (c) 1997-2010 University of Cambridge. |
168 |
.fi |
.fi |