23 |
<P> |
<P> |
24 |
The PCRE library is a set of functions that implement regular expression |
The PCRE library is a set of functions that implement regular expression |
25 |
pattern matching using the same syntax and semantics as Perl, with just a few |
pattern matching using the same syntax and semantics as Perl, with just a few |
26 |
differences. The current implementation of PCRE (release 5.x) corresponds |
differences. The current implementation of PCRE (release 6.x) corresponds |
27 |
approximately with Perl 5.8, including support for UTF-8 encoded strings and |
approximately with Perl 5.8, including support for UTF-8 encoded strings and |
28 |
Unicode general category properties. However, this support has to be explicitly |
Unicode general category properties. However, this support has to be explicitly |
29 |
enabled; it is not the default. |
enabled; it is not the default. |
30 |
</P> |
</P> |
31 |
<P> |
<P> |
32 |
|
In addition to the Perl-compatible matching function, PCRE also contains an |
33 |
|
alternative matching function that matches the same compiled patterns in a |
34 |
|
different way. In certain circumstances, the alternative function has some |
35 |
|
advantages. For a discussion of the two matching algorithms, see the |
36 |
|
<a href="pcrematching.html"><b>pcrematching</b></a> |
37 |
|
page. |
38 |
|
</P> |
39 |
|
<P> |
40 |
PCRE is written in C and released as a C library. A number of people have |
PCRE is written in C and released as a C library. A number of people have |
41 |
written wrappers and interfaces of various kinds. A C++ class is included in |
written wrappers and interfaces of various kinds. In particular, Google Inc. |
42 |
these contributions, which can be found in the <i>Contrib</i> directory at the |
have provided a comprehensive C++ wrapper. This is now included as part of the |
43 |
primary FTP site, which is: |
PCRE distribution. The |
44 |
|
<a href="pcrecpp.html"><b>pcrecpp</b></a> |
45 |
|
page has details of this interface. Other people's contributions can be found |
46 |
|
in the <i>Contrib</i> directory at the primary FTP site, which is: |
47 |
<a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre">ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre</a> |
<a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre">ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre</a> |
48 |
</P> |
</P> |
49 |
<P> |
<P> |
64 |
page. Documentation about building PCRE for various operating systems can be |
page. Documentation about building PCRE for various operating systems can be |
65 |
found in the <b>README</b> file in the source distribution. |
found in the <b>README</b> file in the source distribution. |
66 |
</P> |
</P> |
67 |
|
<P> |
68 |
|
The library contains a number of undocumented internal functions and data |
69 |
|
tables that are used by more than one of the exported external functions, but |
70 |
|
which are not intended for use by external callers. Their names all begin with |
71 |
|
"_pcre_", which hopefully will not provoke any name clashes. In some |
72 |
|
environments, it is possible to control which external symbols are exported |
73 |
|
when a shared library is built, and in these cases the undocumented symbols are |
74 |
|
not exported. |
75 |
|
</P> |
76 |
<br><a name="SEC2" href="#TOC1">USER DOCUMENTATION</a><br> |
<br><a name="SEC2" href="#TOC1">USER DOCUMENTATION</a><br> |
77 |
<P> |
<P> |
78 |
The user documentation for PCRE comprises a number of different sections. In |
The user documentation for PCRE comprises a number of different sections. In |
82 |
follows: |
follows: |
83 |
<pre> |
<pre> |
84 |
pcre this document |
pcre this document |
85 |
pcreapi details of PCRE's native API |
pcreapi details of PCRE's native C API |
86 |
pcrebuild options for building PCRE |
pcrebuild options for building PCRE |
87 |
pcrecallout details of the callout feature |
pcrecallout details of the callout feature |
88 |
pcrecompat discussion of Perl compatibility |
pcrecompat discussion of Perl compatibility |
89 |
|
pcrecpp details of the C++ wrapper |
90 |
pcregrep description of the <b>pcregrep</b> command |
pcregrep description of the <b>pcregrep</b> command |
91 |
|
pcrematching discussion of the two matching algorithms |
92 |
pcrepartial details of the partial matching facility |
pcrepartial details of the partial matching facility |
93 |
pcrepattern syntax and semantics of supported regular expressions |
pcrepattern syntax and semantics of supported regular expressions |
94 |
pcreperform discussion of performance issues |
pcreperform discussion of performance issues |
95 |
pcreposix the POSIX-compatible API |
pcreposix the POSIX-compatible C API |
96 |
pcreprecompile details of saving and re-using precompiled patterns |
pcreprecompile details of saving and re-using precompiled patterns |
97 |
pcresample discussion of the sample program |
pcresample discussion of the sample program |
98 |
|
pcrestack discussion of stack usage |
99 |
pcretest description of the <b>pcretest</b> testing command |
pcretest description of the <b>pcretest</b> testing command |
100 |
</pre> |
</pre> |
101 |
In addition, in the "man" and HTML formats, there is a short page for each |
In addition, in the "man" and HTML formats, there is a short page for each |
102 |
library function, listing its arguments and results. |
C library function, listing its arguments and results. |
103 |
</P> |
</P> |
104 |
<br><a name="SEC3" href="#TOC1">LIMITATIONS</a><br> |
<br><a name="SEC3" href="#TOC1">LIMITATIONS</a><br> |
105 |
<P> |
<P> |
117 |
However, the speed of execution will be slower. |
However, the speed of execution will be slower. |
118 |
</P> |
</P> |
119 |
<P> |
<P> |
120 |
All values in repeating quantifiers must be less than 65536. |
All values in repeating quantifiers must be less than 65536. The maximum |
121 |
The maximum number of capturing subpatterns is 65535. |
compiled length of subpattern with an explicit repeat count is 30000 bytes. The |
122 |
|
maximum number of capturing subpatterns is 65535. |
123 |
</P> |
</P> |
124 |
<P> |
<P> |
125 |
There is no limit to the number of non-capturing subpatterns, but the maximum |
There is no limit to the number of non-capturing subpatterns, but the maximum |
127 |
subpatterns, assertions, and other types of subpattern, is 200. |
subpatterns, assertions, and other types of subpattern, is 200. |
128 |
</P> |
</P> |
129 |
<P> |
<P> |
130 |
|
The maximum length of name for a named subpattern is 32, and the maximum number |
131 |
|
of named subpatterns is 10000. |
132 |
|
</P> |
133 |
|
<P> |
134 |
The maximum length of a subject string is the largest positive number that an |
The maximum length of a subject string is the largest positive number that an |
135 |
integer variable can hold. However, PCRE uses recursion to handle subpatterns |
integer variable can hold. However, when using the traditional matching |
136 |
and indefinite repetition. This means that the available stack space may limit |
function, PCRE uses recursion to handle subpatterns and indefinite repetition. |
137 |
the size of a subject string that can be processed by certain patterns. |
This means that the available stack space may limit the size of a subject |
138 |
|
string that can be processed by certain patterns. For a discussion of stack |
139 |
|
issues, see the |
140 |
|
<a href="pcrestack.html"><b>pcrestack</b></a> |
141 |
|
documentation. |
142 |
<a name="utf8support"></a></P> |
<a name="utf8support"></a></P> |
143 |
<br><a name="SEC4" href="#TOC1">UTF-8 AND UNICODE PROPERTY SUPPORT</a><br> |
<br><a name="SEC4" href="#TOC1">UTF-8 AND UNICODE PROPERTY SUPPORT</a><br> |
144 |
<P> |
<P> |
165 |
support), the escape sequences \p{..}, \P{..}, and \X are supported. |
support), the escape sequences \p{..}, \P{..}, and \X are supported. |
166 |
The available properties that can be tested are limited to the general |
The available properties that can be tested are limited to the general |
167 |
category properties such as Lu for an upper case letter or Nd for a decimal |
category properties such as Lu for an upper case letter or Nd for a decimal |
168 |
number. A full list is given in the |
number, the Unicode script names such as Arabic or Han, and the derived |
169 |
|
properties Any and L&. A full list is given in the |
170 |
<a href="pcrepattern.html"><b>pcrepattern</b></a> |
<a href="pcrepattern.html"><b>pcrepattern</b></a> |
171 |
documentation. The PCRE library is increased in size by about 90K when Unicode |
documentation. Only the short names for properties are supported. For example, |
172 |
property support is included. |
\p{L} matches a letter. Its Perl synonym, \p{Letter}, is not supported. |
173 |
|
Furthermore, in Perl, many properties may optionally be prefixed by "Is", for |
174 |
|
compatibility with Perl 5.6. PCRE does not support this. |
175 |
</P> |
</P> |
176 |
<P> |
<P> |
177 |
The following comments apply when PCRE is running in UTF-8 mode: |
The following comments apply when PCRE is running in UTF-8 mode: |
189 |
may crash. |
may crash. |
190 |
</P> |
</P> |
191 |
<P> |
<P> |
192 |
2. In a pattern, the escape sequence \x{...}, where the contents of the braces |
2. An unbraced hexadecimal escape sequence (such as \xb3) matches a two-byte |
193 |
is a string of hexadecimal digits, is interpreted as a UTF-8 character whose |
UTF-8 character if the value is greater than 127. |
|
code number is the given hexadecimal number, for example: \x{1234}. If a |
|
|
non-hexadecimal digit appears between the braces, the item is not recognized. |
|
|
This escape sequence can be used either as a literal, or within a character |
|
|
class. |
|
194 |
</P> |
</P> |
195 |
<P> |
<P> |
196 |
3. The original hexadecimal escape sequence, \xhh, matches a two-byte UTF-8 |
3. Octal numbers up to \777 are recognized, and match two-byte UTF-8 |
197 |
character if the value is greater than 127. |
characters for values greater than \177. |
198 |
</P> |
</P> |
199 |
<P> |
<P> |
200 |
4. Repeat quantifiers apply to complete UTF-8 characters, not to individual |
4. Repeat quantifiers apply to complete UTF-8 characters, not to individual |
205 |
</P> |
</P> |
206 |
<P> |
<P> |
207 |
6. The escape sequence \C can be used to match a single byte in UTF-8 mode, |
6. The escape sequence \C can be used to match a single byte in UTF-8 mode, |
208 |
but its use can lead to some strange effects. |
but its use can lead to some strange effects. This facility is not available in |
209 |
|
the alternative matching function, <b>pcre_dfa_exec()</b>. |
210 |
</P> |
</P> |
211 |
<P> |
<P> |
212 |
7. The character escapes \b, \B, \d, \D, \s, \S, \w, and \W correctly |
7. The character escapes \b, \B, \d, \D, \s, \S, \w, and \W correctly |
227 |
property support is available, PCRE still uses its own character tables when |
property support is available, PCRE still uses its own character tables when |
228 |
checking the case of low-valued characters, so as not to degrade performance. |
checking the case of low-valued characters, so as not to degrade performance. |
229 |
The Unicode property information is used only for characters with higher |
The Unicode property information is used only for characters with higher |
230 |
values. |
values. Even when Unicode property support is available, PCRE supports |
231 |
|
case-insensitive matching only when there is a one-to-one mapping between a |
232 |
|
letter's cases. There are a small number of many-to-one mappings in Unicode; |
233 |
|
these are not supported by PCRE. |
234 |
</P> |
</P> |
235 |
<br><a name="SEC5" href="#TOC1">AUTHOR</a><br> |
<br><a name="SEC5" href="#TOC1">AUTHOR</a><br> |
236 |
<P> |
<P> |
237 |
Philip Hazel <ph10@cam.ac.uk> |
Philip Hazel |
238 |
<br> |
<br> |
239 |
University Computing Service, |
University Computing Service, |
240 |
<br> |
<br> |
241 |
Cambridge CB2 3QG, England. |
Cambridge CB2 3QG, England. |
242 |
|
</P> |
243 |
|
<P> |
244 |
|
Putting an actual email address here seems to have been a spam magnet, so I've |
245 |
|
taken it away. If you want to email me, use my initial and surname, separated |
246 |
|
by a dot, at the domain ucs.cam.ac.uk. |
247 |
|
Last updated: 05 June 2006 |
248 |
<br> |
<br> |
249 |
Phone: +44 1223 334714 |
Copyright © 1997-2006 University of Cambridge. |
|
Last updated: 09 September 2004 |
|
|
<br> |
|
|
Copyright © 1997-2004 University of Cambridge. |
|
250 |
<p> |
<p> |
251 |
Return to the <a href="index.html">PCRE index page</a>. |
Return to the <a href="index.html">PCRE index page</a>. |
252 |
</p> |
</p> |