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 with respect to Perl |
regular expressions. The differences described here are mainly with respect to |
9 |
5.8. |
Perl 5.8, though PCRE versions 7.0 and later contain some features that are |
10 |
|
expected to be in the forthcoming Perl 5.10. |
11 |
.P |
.P |
12 |
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 |
13 |
it does have are given in the |
it does have are given in the |
64 |
.sp |
.sp |
65 |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
The \eQ...\eE sequence is recognized both inside and outside character classes. |
66 |
.P |
.P |
67 |
8. Fairly obviously, PCRE does not support the (?{code}) and (?p{code}) |
8. Fairly obviously, PCRE does not support the (?{code}) and (??{code}) |
68 |
constructions. However, there is support for recursive patterns using the |
constructions. However, there is support for recursive patterns. This is not |
69 |
non-Perl items (?R), (?number), and (?P>name). Also, the PCRE "callout" feature |
available in Perl 5.8, but will be in Perl 5.10. Also, the PCRE "callout" |
70 |
allows an external function to be called during pattern matching. See the |
feature allows an external function to be called during pattern matching. See |
71 |
|
the |
72 |
.\" HREF |
.\" HREF |
73 |
\fBpcrecallout\fP |
\fBpcrecallout\fP |
74 |
.\" |
.\" |
75 |
documentation for details. |
documentation for details. |
76 |
.P |
.P |
77 |
9. There are some differences that are concerned with the settings of captured |
9. Subpatterns that are called recursively or as "subroutines" are always |
78 |
|
treated as atomic groups in PCRE. This is like Python, but unlike Perl. |
79 |
|
.P |
80 |
|
10. There are some differences that are concerned with the settings of captured |
81 |
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 |
82 |
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". |
83 |
.P |
.P |
84 |
10. PCRE provides some extensions to the Perl regular expression facilities: |
11. PCRE does support Perl 5.10's backtracking verbs (*ACCEPT), (*FAIL), (*F), |
85 |
|
(*COMMIT), (*PRUNE), (*SKIP), and (*THEN), but only in the forms without an |
86 |
|
argument. PCRE does not support (*MARK). If (*ACCEPT) is within capturing |
87 |
|
parentheses, PCRE does not set that capture group; this is different to Perl. |
88 |
|
.P |
89 |
|
12. PCRE provides some extensions to the Perl regular expression facilities. |
90 |
|
Perl 5.10 will include new features that are not in earlier versions, some of |
91 |
|
which (such as named parentheses) have been in PCRE for some time. This list is |
92 |
|
with respect to Perl 5.10: |
93 |
.sp |
.sp |
94 |
(a) Although lookbehind assertions must match fixed length strings, each |
(a) Although lookbehind assertions must match fixed length strings, each |
95 |
alternative branch of a lookbehind assertion can match a different length of |
alternative branch of a lookbehind assertion can match a different length of |
99 |
meta-character matches only at the very end of the string. |
meta-character matches only at the very end of the string. |
100 |
.sp |
.sp |
101 |
(c) If PCRE_EXTRA is set, a backslash followed by a letter with no special |
(c) If PCRE_EXTRA is set, a backslash followed by a letter with no special |
102 |
meaning is faulted. Otherwise, like Perl, the backslash is ignored. (Perl can |
meaning is faulted. Otherwise, like Perl, the backslash is quietly ignored. |
103 |
be made to issue a warning.) |
(Perl can be made to issue a warning.) |
104 |
.sp |
.sp |
105 |
(d) If PCRE_UNGREEDY is set, the greediness of the repetition quantifiers is |
(d) If PCRE_UNGREEDY is set, the greediness of the repetition quantifiers is |
106 |
inverted, that is, by default they are not greedy, but if followed by a |
inverted, that is, by default they are not greedy, but if followed by a |
112 |
(f) The PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, and PCRE_NO_AUTO_CAPTURE |
(f) The PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, and PCRE_NO_AUTO_CAPTURE |
113 |
options for \fBpcre_exec()\fP have no Perl equivalents. |
options for \fBpcre_exec()\fP have no Perl equivalents. |
114 |
.sp |
.sp |
115 |
(g) The (?R), (?number), and (?P>name) constructs allows for recursive pattern |
(g) The callout facility is PCRE-specific. |
|
matching (Perl can do this using the (?p{code}) construct, which PCRE cannot |
|
|
support.) |
|
|
.sp |
|
|
(h) PCRE supports named capturing substrings, using the Python syntax. |
|
|
.sp |
|
|
(i) PCRE supports the possessive quantifier "++" syntax, taken from Sun's Java |
|
|
package. |
|
|
.sp |
|
|
(j) The (R) condition, for testing recursion, is a PCRE extension. |
|
|
.sp |
|
|
(k) The callout facility is PCRE-specific. |
|
116 |
.sp |
.sp |
117 |
(l) The partial matching facility is PCRE-specific. |
(h) The partial matching facility is PCRE-specific. |
118 |
.sp |
.sp |
119 |
(m) Patterns compiled by PCRE can be saved and re-used at a later time, even on |
(i) Patterns compiled by PCRE can be saved and re-used at a later time, even on |
120 |
different hosts that have the other endianness. |
different hosts that have the other endianness. |
121 |
.sp |
.sp |
122 |
(n) The alternative matching function (\fBpcre_dfa_exec()\fP) matches in a |
(j) The alternative matching function (\fBpcre_dfa_exec()\fP) matches in a |
123 |
different way and is not Perl-compatible. |
different way and is not Perl-compatible. |
124 |
.P |
. |
125 |
.in 0 |
. |
126 |
Last updated: 06 June 2006 |
.SH AUTHOR |
127 |
.br |
.rs |
128 |
Copyright (c) 1997-2006 University of Cambridge. |
.sp |
129 |
|
.nf |
130 |
|
Philip Hazel |
131 |
|
University Computing Service |
132 |
|
Cambridge CB2 3QH, England. |
133 |
|
.fi |
134 |
|
. |
135 |
|
. |
136 |
|
.SH REVISION |
137 |
|
.rs |
138 |
|
.sp |
139 |
|
.nf |
140 |
|
Last updated: 08 August 2007 |
141 |
|
Copyright (c) 1997-2007 University of Cambridge. |
142 |
|
.fi |