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 |
5.10. |
|
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 |
85 |
.\" |
.\" |
86 |
in the |
in the |
87 |
.\" HREF |
.\" HREF |
88 |
\fBpcrecompat\fP |
\fBpcrepattern\fP |
89 |
.\" |
.\" |
90 |
page. |
page. |
91 |
.P |
.P |
97 |
(*COMMIT), (*PRUNE), (*SKIP), and (*THEN), but only in the forms without an |
(*COMMIT), (*PRUNE), (*SKIP), and (*THEN), but only in the forms without an |
98 |
argument. PCRE does not support (*MARK). |
argument. PCRE does not support (*MARK). |
99 |
.P |
.P |
100 |
12. PCRE provides some extensions to the Perl regular expression facilities. |
12. PCRE's handling of duplicate subpattern numbers and duplicate subpattern |
101 |
Perl 5.10 will include new features that are not in earlier versions, some of |
names is not as general as Perl's. This is a consequence of the fact the PCRE |
102 |
which (such as named parentheses) have been in PCRE for some time. This list is |
works internally just with numbers, using an external table to translate |
103 |
with respect to Perl 5.10: |
between numbers and names. The following are some specific differences: |
104 |
.sp |
.sp |
105 |
(a) Although lookbehind assertions must match fixed length strings, each |
(a) After matching a pattern such as (?|(?<a>A)|(?<b)B) where the two capturing |
106 |
alternative branch of a lookbehind assertion can match a different length of |
parentheses have the same number but different names, it is not possible to |
107 |
string. Perl requires them all to have the same length. |
distinguish which parentheses matched, because both names map to capturing |
108 |
|
subpattern number 1. |
109 |
|
.sp |
110 |
|
(b) A condition test for a subpattern with a name that is duplicated gives |
111 |
|
unpredictable results. For example, when the pattern |
112 |
|
(?:(?<a>A)|(?<a>B))(?('a')...|...) is compiled (the PCRE_DUPNAMES option is |
113 |
|
required), the condition test (?('a') is set to test whether subpattern 1 has |
114 |
|
matched, ignoring subpattern 2, even though it has the same name. |
115 |
|
.P |
116 |
|
13. PCRE provides some extensions to the Perl regular expression facilities. |
117 |
|
Perl 5.10 includes new features that are not in earlier versions of Perl, some |
118 |
|
of which (such as named parentheses) have been in PCRE for some time. This list |
119 |
|
is with respect to Perl 5.10: |
120 |
|
.sp |
121 |
|
(a) Although lookbehind assertions in PCRE must match fixed length strings, |
122 |
|
each alternative branch of a lookbehind assertion can match a different length |
123 |
|
of string. Perl requires them all to have the same length. |
124 |
.sp |
.sp |
125 |
(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 $ |
126 |
meta-character matches only at the very end of the string. |
meta-character matches only at the very end of the string. |
170 |
.rs |
.rs |
171 |
.sp |
.sp |
172 |
.nf |
.nf |
173 |
Last updated: 18 September 2009 |
Last updated: 29 September 2009 |
174 |
Copyright (c) 1997-2009 University of Cambridge. |
Copyright (c) 1997-2009 University of Cambridge. |
175 |
.fi |
.fi |