/[pcre]/code/trunk/doc/pcre.txt
ViewVC logotype

Contents of /code/trunk/doc/pcre.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 345 - (hide annotations) (download)
Mon Apr 28 15:10:02 2008 UTC (5 years ago) by ph10
File MIME type: text/plain
File size: 309047 byte(s)
Tidies for the 7.7-RC1 distribution.

1 nigel 75 -----------------------------------------------------------------------------
2 nigel 63 This file contains a concatenation of the PCRE man pages, converted to plain
3     text format for ease of searching with a text editor, or for use on systems
4     that do not have a man page processor. The small individual files that give
5     synopses of each function in the library have not been included. There are
6     separate text files for the pcregrep and pcretest commands.
7     -----------------------------------------------------------------------------
8    
9 nigel 41
10 nigel 79 PCRE(3) PCRE(3)
11 nigel 41
12 nigel 79
13 nigel 73 NAME
14     PCRE - Perl-compatible regular expressions
15    
16 nigel 77
17 nigel 75 INTRODUCTION
18 nigel 41
19 nigel 73 The PCRE library is a set of functions that implement regular expres-
20     sion pattern matching using the same syntax and semantics as Perl, with
21 ph10 345 just a few differences. Certain features that appeared in Python and
22 nigel 93 PCRE before they appeared in Perl are also available using the Python
23 ph10 345 syntax. There is also some support for certain .NET and Oniguruma syn-
24     tax items, and there is an option for requesting some minor changes
25     that give better JavaScript compatibility.
26 nigel 63
27 nigel 93 The current implementation of PCRE (release 7.x) corresponds approxi-
28     mately with Perl 5.10, including support for UTF-8 encoded strings and
29     Unicode general category properties. However, UTF-8 and Unicode support
30     has to be explicitly enabled; it is not the default. The Unicode tables
31     correspond to Unicode release 5.0.0.
32 nigel 77
33 nigel 93 In addition to the Perl-compatible matching function, PCRE contains an
34     alternative matching function that matches the same compiled patterns
35     in a different way. In certain circumstances, the alternative function
36     has some advantages. For a discussion of the two matching algorithms,
37     see the pcrematching page.
38    
39     PCRE is written in C and released as a C library. A number of people
40     have written wrappers and interfaces of various kinds. In particular,
41     Google Inc. have provided a comprehensive C++ wrapper. This is now
42 nigel 77 included as part of the PCRE distribution. The pcrecpp page has details
43 nigel 93 of this interface. Other people's contributions can be found in the
44 nigel 77 Contrib directory at the primary FTP site, which is:
45 nigel 63
46 nigel 73 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre
47 nigel 63
48 nigel 93 Details of exactly which Perl regular expression features are and are
49 nigel 73 not supported by PCRE are given in separate documents. See the pcrepat-
50 ph10 208 tern and pcrecompat pages. There is a syntax summary in the pcresyntax
51     page.
52 nigel 63
53 ph10 208 Some features of PCRE can be included, excluded, or changed when the
54     library is built. The pcre_config() function makes it possible for a
55     client to discover which features are available. The features them-
56     selves are described in the pcrebuild page. Documentation about build-
57     ing PCRE for various operating systems can be found in the README file
58 nigel 75 in the source distribution.
59 nigel 63
60 ph10 208 The library contains a number of undocumented internal functions and
61     data tables that are used by more than one of the exported external
62     functions, but which are not intended for use by external callers.
63     Their names all begin with "_pcre_", which hopefully will not provoke
64 nigel 83 any name clashes. In some environments, it is possible to control which
65 ph10 208 external symbols are exported when a shared library is built, and in
66 nigel 83 these cases the undocumented symbols are not exported.
67 nigel 63
68 nigel 77
69 nigel 63 USER DOCUMENTATION
70    
71 ph10 208 The user documentation for PCRE comprises a number of different sec-
72     tions. In the "man" format, each of these is a separate "man page". In
73     the HTML format, each is a separate page, linked from the index page.
74     In the plain text format, all the sections are concatenated, for ease
75 nigel 75 of searching. The sections are as follows:
76 nigel 63
77 nigel 73 pcre this document
78 ph10 153 pcre-config show PCRE installation configuration information
79 nigel 77 pcreapi details of PCRE's native C API
80 nigel 73 pcrebuild options for building PCRE
81     pcrecallout details of the callout feature
82     pcrecompat discussion of Perl compatibility
83 nigel 77 pcrecpp details of the C++ wrapper
84 nigel 73 pcregrep description of the pcregrep command
85 nigel 77 pcrematching discussion of the two matching algorithms
86 nigel 75 pcrepartial details of the partial matching facility
87 nigel 73 pcrepattern syntax and semantics of supported
88     regular expressions
89 ph10 208 pcresyntax quick syntax reference
90 nigel 73 pcreperform discussion of performance issues
91 nigel 77 pcreposix the POSIX-compatible C API
92 nigel 75 pcreprecompile details of saving and re-using precompiled patterns
93 nigel 73 pcresample discussion of the sample program
94 nigel 91 pcrestack discussion of stack usage
95 nigel 75 pcretest description of the pcretest testing command
96 nigel 63
97 ph10 208 In addition, in the "man" and HTML formats, there is a short page for
98 nigel 77 each C library function, listing its arguments and results.
99 nigel 63
100    
101     LIMITATIONS
102    
103 ph10 208 There are some size limitations in PCRE but it is hoped that they will
104 nigel 73 never in practice be relevant.
105 nigel 63
106 ph10 208 The maximum length of a compiled pattern is 65539 (sic) bytes if PCRE
107 nigel 73 is compiled with the default internal linkage size of 2. If you want to
108 ph10 208 process regular expressions that are truly enormous, you can compile
109     PCRE with an internal linkage size of 3 or 4 (see the README file in
110     the source distribution and the pcrebuild documentation for details).
111     In these cases the limit is substantially larger. However, the speed
112 nigel 93 of execution is slower.
113 nigel 63
114 ph10 208 All values in repeating quantifiers must be less than 65536.
115 nigel 63
116 nigel 93 There is no limit to the number of parenthesized subpatterns, but there
117     can be no more than 65535 capturing subpatterns.
118 nigel 63
119 nigel 93 The maximum length of name for a named subpattern is 32 characters, and
120     the maximum number of named subpatterns is 10000.
121 nigel 91
122 ph10 197 The maximum length of a subject string is the largest positive number
123     that an integer variable can hold. However, when using the traditional
124 nigel 77 matching function, PCRE uses recursion to handle subpatterns and indef-
125 ph10 197 inite repetition. This means that the available stack space may limit
126 nigel 77 the size of a subject string that can be processed by certain patterns.
127 nigel 91 For a discussion of stack issues, see the pcrestack documentation.
128 nigel 63
129    
130 nigel 75 UTF-8 AND UNICODE PROPERTY SUPPORT
131 nigel 63
132 ph10 197 From release 3.3, PCRE has had some support for character strings
133     encoded in the UTF-8 format. For release 4.0 this was greatly extended
134     to cover most common requirements, and in release 5.0 additional sup-
135 nigel 75 port for Unicode general category properties was added.
136 nigel 63
137 ph10 197 In order process UTF-8 strings, you must build PCRE to include UTF-8
138     support in the code, and, in addition, you must call pcre_compile()
139     with the PCRE_UTF8 option flag. When you do this, both the pattern and
140     any subject strings that are matched against it are treated as UTF-8
141 nigel 73 strings instead of just strings of bytes.
142 nigel 63
143 ph10 197 If you compile PCRE with UTF-8 support, but do not use it at run time,
144     the library will be a bit bigger, but the additional run time overhead
145 nigel 93 is limited to testing the PCRE_UTF8 flag occasionally, so should not be
146     very big.
147 nigel 63
148 nigel 75 If PCRE is built with Unicode character property support (which implies
149 ph10 197 UTF-8 support), the escape sequences \p{..}, \P{..}, and \X are sup-
150 nigel 75 ported. The available properties that can be tested are limited to the
151 ph10 197 general category properties such as Lu for an upper case letter or Nd
152     for a decimal number, the Unicode script names such as Arabic or Han,
153     and the derived properties Any and L&. A full list is given in the
154 nigel 87 pcrepattern documentation. Only the short names for properties are sup-
155 ph10 197 ported. For example, \p{L} matches a letter. Its Perl synonym, \p{Let-
156     ter}, is not supported. Furthermore, in Perl, many properties may
157     optionally be prefixed by "Is", for compatibility with Perl 5.6. PCRE
158 nigel 87 does not support this.
159 nigel 75
160 ph10 211 Validity of UTF-8 strings
161 nigel 63
162 ph10 211 When you set the PCRE_UTF8 flag, the strings passed as patterns and
163     subjects are (by default) checked for validity on entry to the relevant
164     functions. From release 7.3 of PCRE, the check is according the rules
165     of RFC 3629, which are themselves derived from the Unicode specifica-
166     tion. Earlier releases of PCRE followed the rules of RFC 2279, which
167     allows the full range of 31-bit values (0 to 0x7FFFFFFF). The current
168     check allows only values in the range U+0 to U+10FFFF, excluding U+D800
169     to U+DFFF.
170 nigel 63
171 ph10 211 The excluded code points are the "Low Surrogate Area" of Unicode, of
172     which the Unicode Standard says this: "The Low Surrogate Area does not
173     contain any character assignments, consequently no character code
174     charts or namelists are provided for this area. Surrogates are reserved
175     for use with UTF-16 and then must be used in pairs." The code points
176     that are encoded by UTF-16 pairs are available as independent code
177     points in the UTF-8 encoding. (In other words, the whole surrogate
178     thing is a fudge for UTF-16 which unfortunately messes up UTF-8.)
179    
180     If an invalid UTF-8 string is passed to PCRE, an error return
181     (PCRE_ERROR_BADUTF8) is given. In some situations, you may already know
182     that your strings are valid, and therefore want to skip these checks in
183     order to improve performance. If you set the PCRE_NO_UTF8_CHECK flag at
184     compile time or at run time, PCRE assumes that the pattern or subject
185     it is given (respectively) contains only valid UTF-8 codes. In this
186     case, it does not diagnose an invalid UTF-8 string.
187    
188     If you pass an invalid UTF-8 string when PCRE_NO_UTF8_CHECK is set,
189     what happens depends on why the string is invalid. If the string con-
190     forms to the "old" definition of UTF-8 (RFC 2279), it is processed as a
191     string of characters in the range 0 to 0x7FFFFFFF. In other words,
192     apart from the initial validity test, PCRE (when in UTF-8 mode) handles
193     strings according to the more liberal rules of RFC 2279. However, if
194     the string does not even conform to RFC 2279, the result is undefined.
195     Your program may crash.
196    
197     If you want to process strings of values in the full range 0 to
198     0x7FFFFFFF, encoded in a UTF-8-like manner as per the old RFC, you can
199     set PCRE_NO_UTF8_CHECK to bypass the more restrictive test. However, in
200     this situation, you will have to apply your own validity check.
201    
202     General comments about UTF-8 mode
203    
204     1. An unbraced hexadecimal escape sequence (such as \xb3) matches a
205 nigel 87 two-byte UTF-8 character if the value is greater than 127.
206 nigel 63
207 ph10 211 2. Octal numbers up to \777 are recognized, and match two-byte UTF-8
208 nigel 91 characters for values greater than \177.
209    
210 ph10 211 3. Repeat quantifiers apply to complete UTF-8 characters, not to indi-
211 nigel 73 vidual bytes, for example: \x{100}{3}.
212 nigel 63
213 ph10 211 4. The dot metacharacter matches one UTF-8 character instead of a sin-
214 nigel 75 gle byte.
215 nigel 63
216 ph10 211 5. The escape sequence \C can be used to match a single byte in UTF-8
217 ph10 197 mode, but its use can lead to some strange effects. This facility is
218 nigel 77 not available in the alternative matching function, pcre_dfa_exec().
219 nigel 63
220 ph10 211 6. The character escapes \b, \B, \d, \D, \s, \S, \w, and \W correctly
221 ph10 197 test characters of any code value, but the characters that PCRE recog-
222     nizes as digits, spaces, or word characters remain the same set as
223 nigel 75 before, all with values less than 256. This remains true even when PCRE
224 ph10 197 includes Unicode property support, because to do otherwise would slow
225     down PCRE in many common cases. If you really want to test for a wider
226     sense of, say, "digit", you must use Unicode property tests such as
227 nigel 75 \p{Nd}.
228 nigel 63
229 ph10 211 7. Similarly, characters that match the POSIX named character classes
230 nigel 75 are all low-valued characters.
231 nigel 63
232 ph10 211 8. However, the Perl 5.10 horizontal and vertical whitespace matching
233 ph10 182 escapes (\h, \H, \v, and \V) do match all the appropriate Unicode char-
234     acters.
235    
236 ph10 211 9. Case-insensitive matching applies only to characters whose values
237 ph10 197 are less than 128, unless PCRE is built with Unicode property support.
238     Even when Unicode property support is available, PCRE still uses its
239     own character tables when checking the case of low-valued characters,
240     so as not to degrade performance. The Unicode property information is
241 nigel 87 used only for characters with higher values. Even when Unicode property
242     support is available, PCRE supports case-insensitive matching only when
243 ph10 197 there is a one-to-one mapping between a letter's cases. There are a
244     small number of many-to-one mappings in Unicode; these are not sup-
245 nigel 87 ported by PCRE.
246 nigel 63
247    
248     AUTHOR
249    
250 nigel 77 Philip Hazel
251 ph10 99 University Computing Service
252 nigel 93 Cambridge CB2 3QH, England.
253 nigel 63
254 ph10 197 Putting an actual email address here seems to have been a spam magnet,
255     so I've taken it away. If you want to email me, use my two initials,
256 ph10 153 followed by the two digits 10, at the domain cam.ac.uk.
257 nigel 77
258 nigel 63
259 ph10 99 REVISION
260 nigel 63
261 ph10 345 Last updated: 12 April 2008
262     Copyright (c) 1997-2008 University of Cambridge.
263 ph10 99 ------------------------------------------------------------------------------
264 ph10 259
265    
266 nigel 79 PCREBUILD(3) PCREBUILD(3)
267 nigel 63
268 nigel 79
269 nigel 73 NAME
270     PCRE - Perl-compatible regular expressions
271    
272 nigel 77
273 nigel 63 PCRE BUILD-TIME OPTIONS
274    
275 nigel 73 This document describes the optional features of PCRE that can be
276 ph10 261 selected when the library is compiled. It assumes use of the configure
277     script, where the optional features are selected or deselected by pro-
278     viding options to configure before running the make command. However,
279     the same options can be selected in both Unix-like and non-Unix-like
280     environments using the GUI facility of CMakeSetup if you are using
281     CMake instead of configure to build PCRE.
282 nigel 63
283 ph10 261 The complete list of options for configure (which includes the standard
284     ones such as the selection of the installation directory) can be
285     obtained by running
286    
287 nigel 73 ./configure --help
288 nigel 63
289 ph10 261 The following sections include descriptions of options whose names
290 ph10 128 begin with --enable or --disable. These settings specify changes to the
291 ph10 261 defaults for the configure command. Because of the way that configure
292     works, --enable and --disable always come in pairs, so the complemen-
293     tary option always exists as well, but as it specifies the default, it
294 ph10 128 is not described.
295 nigel 63
296    
297 nigel 83 C++ SUPPORT
298    
299     By default, the configure script will search for a C++ compiler and C++
300     header files. If it finds them, it automatically builds the C++ wrapper
301     library for PCRE. You can disable this by adding
302    
303     --disable-cpp
304    
305     to the configure command.
306    
307    
308 nigel 63 UTF-8 SUPPORT
309    
310 nigel 73 To build PCRE with support for UTF-8 character strings, add
311 nigel 63
312 nigel 73 --enable-utf8
313 nigel 63
314 ph10 261 to the configure command. Of itself, this does not make PCRE treat
315     strings as UTF-8. As well as compiling PCRE with this option, you also
316     have have to set the PCRE_UTF8 option when you call the pcre_compile()
317 nigel 73 function.
318 nigel 63
319    
320 nigel 75 UNICODE CHARACTER PROPERTY SUPPORT
321    
322 ph10 261 UTF-8 support allows PCRE to process character values greater than 255
323     in the strings that it handles. On its own, however, it does not pro-
324 nigel 75 vide any facilities for accessing the properties of such characters. If
325 ph10 261 you want to be able to use the pattern escapes \P, \p, and \X, which
326 nigel 75 refer to Unicode character properties, you must add
327    
328     --enable-unicode-properties
329    
330 ph10 261 to the configure command. This implies UTF-8 support, even if you have
331 nigel 75 not explicitly requested it.
332    
333 ph10 261 Including Unicode property support adds around 30K of tables to the
334     PCRE library. Only the general category properties such as Lu and Nd
335 ph10 128 are supported. Details are given in the pcrepattern documentation.
336 nigel 75
337    
338 nigel 63 CODE VALUE OF NEWLINE
339    
340 ph10 261 By default, PCRE interprets character 10 (linefeed, LF) as indicating
341     the end of a line. This is the normal newline character on Unix-like
342 nigel 91 systems. You can compile PCRE to use character 13 (carriage return, CR)
343     instead, by adding
344 nigel 63
345 nigel 73 --enable-newline-is-cr
346 nigel 63
347 ph10 261 to the configure command. There is also a --enable-newline-is-lf
348 nigel 91 option, which explicitly specifies linefeed as the newline character.
349 nigel 63
350 nigel 91 Alternatively, you can specify that line endings are to be indicated by
351     the two character sequence CRLF. If you want this, add
352 nigel 63
353 nigel 91 --enable-newline-is-crlf
354    
355 nigel 93 to the configure command. There is a fourth option, specified by
356 nigel 91
357 ph10 150 --enable-newline-is-anycrlf
358    
359 ph10 261 which causes PCRE to recognize any of the three sequences CR, LF, or
360 ph10 150 CRLF as indicating a line ending. Finally, a fifth option, specified by
361    
362 nigel 93 --enable-newline-is-any
363 nigel 91
364 ph10 150 causes PCRE to recognize any Unicode newline sequence.
365 nigel 93
366 ph10 261 Whatever line ending convention is selected when PCRE is built can be
367     overridden when the library functions are called. At build time it is
368 nigel 93 conventional to use the standard for your operating system.
369    
370    
371 ph10 231 WHAT \R MATCHES
372    
373 ph10 261 By default, the sequence \R in a pattern matches any Unicode newline
374     sequence, whatever has been selected as the line ending sequence. If
375 ph10 231 you specify
376    
377     --enable-bsr-anycrlf
378    
379 ph10 261 the default is changed so that \R matches only CR, LF, or CRLF. What-
380     ever is selected when PCRE is built can be overridden when the library
381 ph10 231 functions are called.
382    
383    
384 nigel 63 BUILDING SHARED AND STATIC LIBRARIES
385    
386 ph10 261 The PCRE building process uses libtool to build both shared and static
387     Unix libraries by default. You can suppress one of these by adding one
388 nigel 73 of
389 nigel 63
390 nigel 73 --disable-shared
391     --disable-static
392 nigel 63
393 nigel 73 to the configure command, as required.
394 nigel 63
395    
396     POSIX MALLOC USAGE
397    
398 nigel 75 When PCRE is called through the POSIX interface (see the pcreposix doc-
399 ph10 261 umentation), additional working storage is required for holding the
400     pointers to capturing substrings, because PCRE requires three integers
401     per substring, whereas the POSIX interface provides only two. If the
402 nigel 73 number of expected substrings is small, the wrapper function uses space
403     on the stack, because this is faster than using malloc() for each call.
404     The default threshold above which the stack is no longer used is 10; it
405     can be changed by adding a setting such as
406 nigel 63
407 nigel 73 --with-posix-malloc-threshold=20
408 nigel 63
409 nigel 73 to the configure command.
410 nigel 63
411    
412     HANDLING VERY LARGE PATTERNS
413    
414 ph10 261 Within a compiled pattern, offset values are used to point from one
415     part to another (for example, from an opening parenthesis to an alter-
416     nation metacharacter). By default, two-byte values are used for these
417     offsets, leading to a maximum size for a compiled pattern of around
418     64K. This is sufficient to handle all but the most gigantic patterns.
419     Nevertheless, some people do want to process enormous patterns, so it
420     is possible to compile PCRE to use three-byte or four-byte offsets by
421 nigel 73 adding a setting such as
422 nigel 63
423 nigel 73 --with-link-size=3
424 nigel 63
425 ph10 261 to the configure command. The value given must be 2, 3, or 4. Using
426     longer offsets slows down the operation of PCRE because it has to load
427 nigel 73 additional bytes when handling them.
428 nigel 63
429    
430 nigel 73 AVOIDING EXCESSIVE STACK USAGE
431    
432 nigel 77 When matching with the pcre_exec() function, PCRE implements backtrack-
433 ph10 261 ing by making recursive calls to an internal function called match().
434     In environments where the size of the stack is limited, this can se-
435     verely limit PCRE's operation. (The Unix environment does not usually
436 nigel 91 suffer from this problem, but it may sometimes be necessary to increase
437 ph10 261 the maximum stack size. There is a discussion in the pcrestack docu-
438     mentation.) An alternative approach to recursion that uses memory from
439     the heap to remember data, instead of using recursive function calls,
440     has been implemented to work round the problem of limited stack size.
441 nigel 91 If you want to build a version of PCRE that works this way, add
442 nigel 73
443     --disable-stack-for-recursion
444    
445 ph10 261 to the configure command. With this configuration, PCRE will use the
446     pcre_stack_malloc and pcre_stack_free variables to call memory manage-
447     ment functions. By default these point to malloc() and free(), but you
448 ph10 182 can replace the pointers so that your own functions are used.
449 nigel 73
450 ph10 261 Separate functions are provided rather than using pcre_malloc and
451     pcre_free because the usage is very predictable: the block sizes
452     requested are always the same, and the blocks are always freed in
453     reverse order. A calling program might be able to implement optimized
454     functions that perform better than malloc() and free(). PCRE runs
455 ph10 182 noticeably more slowly when built in this way. This option affects only
456 ph10 261 the pcre_exec() function; it is not relevant for the the
457 ph10 182 pcre_dfa_exec() function.
458 nigel 73
459 ph10 182
460 nigel 91 LIMITING PCRE RESOURCE USAGE
461    
462 ph10 261 Internally, PCRE has a function called match(), which it calls repeat-
463     edly (sometimes recursively) when matching a pattern with the
464     pcre_exec() function. By controlling the maximum number of times this
465     function may be called during a single matching operation, a limit can
466     be placed on the resources used by a single call to pcre_exec(). The
467     limit can be changed at run time, as described in the pcreapi documen-
468     tation. The default is 10 million, but this can be changed by adding a
469 nigel 91 setting such as
470    
471     --with-match-limit=500000
472    
473 ph10 261 to the configure command. This setting has no effect on the
474 nigel 91 pcre_dfa_exec() matching function.
475    
476 ph10 261 In some environments it is desirable to limit the depth of recursive
477 nigel 91 calls of match() more strictly than the total number of calls, in order
478 ph10 261 to restrict the maximum amount of stack (or heap, if --disable-stack-
479 nigel 91 for-recursion is specified) that is used. A second limit controls this;
480 ph10 261 it defaults to the value that is set for --with-match-limit, which
481     imposes no additional constraints. However, you can set a lower limit
482 nigel 91 by adding, for example,
483    
484     --with-match-limit-recursion=10000
485    
486 ph10 261 to the configure command. This value can also be overridden at run
487 nigel 91 time.
488    
489    
490 ph10 128 CREATING CHARACTER TABLES AT BUILD TIME
491    
492 ph10 261 PCRE uses fixed tables for processing characters whose code values are
493     less than 256. By default, PCRE is built with a set of tables that are
494     distributed in the file pcre_chartables.c.dist. These tables are for
495 ph10 128 ASCII codes only. If you add
496    
497     --enable-rebuild-chartables
498    
499 ph10 261 to the configure command, the distributed tables are no longer used.
500     Instead, a program called dftables is compiled and run. This outputs
501 ph10 128 the source for new set of tables, created in the default locale of your
502     C runtime system. (This method of replacing the tables does not work if
503 ph10 261 you are cross compiling, because dftables is run on the local host. If
504     you need to create alternative tables when cross compiling, you will
505 ph10 128 have to do so "by hand".)
506    
507    
508 nigel 73 USING EBCDIC CODE
509    
510 ph10 261 PCRE assumes by default that it will run in an environment where the
511     character code is ASCII (or Unicode, which is a superset of ASCII).
512     This is the case for most computer operating systems. PCRE can, how-
513 ph10 197 ever, be compiled to run in an EBCDIC environment by adding
514 nigel 73
515     --enable-ebcdic
516    
517 ph10 128 to the configure command. This setting implies --enable-rebuild-charta-
518 ph10 261 bles. You should only use it if you know that you are in an EBCDIC
519 ph10 197 environment (for example, an IBM mainframe operating system).
520 nigel 73
521 nigel 93
522 ph10 286 PCREGREP OPTIONS FOR COMPRESSED FILE SUPPORT
523    
524     By default, pcregrep reads all files as plain text. You can build it so
525     that it recognizes files whose names end in .gz or .bz2, and reads them
526     with libz or libbz2, respectively, by adding one or both of
527    
528     --enable-pcregrep-libz
529     --enable-pcregrep-libbz2
530    
531     to the configure command. These options naturally require that the rel-
532     evant libraries are installed on your system. Configuration will fail
533     if they are not.
534    
535    
536 ph10 289 PCRETEST OPTION FOR LIBREADLINE SUPPORT
537    
538     If you add
539    
540     --enable-pcretest-libreadline
541    
542     to the configure command, pcretest is linked with the libreadline
543     library, and when its input is from a terminal, it reads it using the
544     readline() function. This provides line-editing and history facilities.
545     Note that libreadline is GPL-licenced, so if you distribute a binary of
546     pcretest linked in this way, there may be licensing issues.
547    
548 ph10 345 Setting this option causes the -lreadline option to be added to the
549     pcretest build. In many operating environments with a sytem-installed
550     libreadline this is sufficient. However, in some environments (e.g. if
551     an unmodified distribution version of readline is in use), some extra
552     configuration may be necessary. The INSTALL file for libreadline says
553     this:
554 ph10 289
555 ph10 345 "Readline uses the termcap functions, but does not link with the
556     termcap or curses library itself, allowing applications which link
557     with readline the to choose an appropriate library."
558    
559     If your environment has not been set up so that an appropriate library
560     is automatically included, you may need to add something like
561    
562     LIBS="-ncurses"
563    
564     immediately before the configure command.
565    
566    
567 nigel 93 SEE ALSO
568    
569     pcreapi(3), pcre_config(3).
570    
571 nigel 63
572 ph10 99 AUTHOR
573 nigel 63
574 ph10 99 Philip Hazel
575     University Computing Service
576     Cambridge CB2 3QH, England.
577    
578    
579     REVISION
580    
581 ph10 345 Last updated: 13 April 2008
582     Copyright (c) 1997-2008 University of Cambridge.
583 ph10 99 ------------------------------------------------------------------------------
584 ph10 259
585    
586 nigel 79 PCREMATCHING(3) PCREMATCHING(3)
587 nigel 63
588 nigel 79
589 nigel 77 NAME
590     PCRE - Perl-compatible regular expressions
591 nigel 73
592 nigel 77
593     PCRE MATCHING ALGORITHMS
594    
595     This document describes the two different algorithms that are available
596     in PCRE for matching a compiled regular expression against a given sub-
597     ject string. The "standard" algorithm is the one provided by the
598     pcre_exec() function. This works in the same was as Perl's matching
599     function, and provides a Perl-compatible matching operation.
600    
601     An alternative algorithm is provided by the pcre_dfa_exec() function;
602     this operates in a different way, and is not Perl-compatible. It has
603     advantages and disadvantages compared with the standard algorithm, and
604     these are described below.
605    
606     When there is only one possible way in which a given subject string can
607     match a pattern, the two algorithms give the same answer. A difference
608     arises, however, when there are multiple possibilities. For example, if
609     the pattern
610    
611     ^<.*>
612    
613     is matched against the string
614    
615     <something> <something else> <something further>
616    
617     there are three possible answers. The standard algorithm finds only one
618 nigel 93 of them, whereas the alternative algorithm finds all three.
619 nigel 77
620    
621     REGULAR EXPRESSIONS AS TREES
622    
623     The set of strings that are matched by a regular expression can be rep-
624     resented as a tree structure. An unlimited repetition in the pattern
625     makes the tree of infinite size, but it is still a tree. Matching the
626     pattern to a given subject string (from a given starting point) can be
627 nigel 91 thought of as a search of the tree. There are two ways to search a
628     tree: depth-first and breadth-first, and these correspond to the two
629     matching algorithms provided by PCRE.
630 nigel 77
631    
632     THE STANDARD MATCHING ALGORITHM
633    
634 ph10 148 In the terminology of Jeffrey Friedl's book "Mastering Regular Expres-
635     sions", the standard algorithm is an "NFA algorithm". It conducts a
636 nigel 77 depth-first search of the pattern tree. That is, it proceeds along a
637     single path through the tree, checking that the subject matches what is
638     required. When there is a mismatch, the algorithm tries any alterna-
639     tives at the current point, and if they all fail, it backs up to the
640     previous branch point in the tree, and tries the next alternative
641     branch at that level. This often involves backing up (moving to the
642     left) in the subject string as well. The order in which repetition
643     branches are tried is controlled by the greedy or ungreedy nature of
644     the quantifier.
645    
646     If a leaf node is reached, a matching string has been found, and at
647     that point the algorithm stops. Thus, if there is more than one possi-
648     ble match, this algorithm returns the first one that it finds. Whether
649     this is the shortest, the longest, or some intermediate length depends
650     on the way the greedy and ungreedy repetition quantifiers are specified
651     in the pattern.
652    
653     Because it ends up with a single path through the tree, it is rela-
654     tively straightforward for this algorithm to keep track of the sub-
655     strings that are matched by portions of the pattern in parentheses.
656     This provides support for capturing parentheses and back references.
657    
658    
659 nigel 93 THE ALTERNATIVE MATCHING ALGORITHM
660 nigel 77
661 nigel 93 This algorithm conducts a breadth-first search of the tree. Starting
662     from the first matching point in the subject, it scans the subject
663     string from left to right, once, character by character, and as it does
664     this, it remembers all the paths through the tree that represent valid
665     matches. In Friedl's terminology, this is a kind of "DFA algorithm",
666     though it is not implemented as a traditional finite state machine (it
667     keeps multiple states active simultaneously).
668 nigel 77
669 nigel 93 The scan continues until either the end of the subject is reached, or
670     there are no more unterminated paths. At this point, terminated paths
671     represent the different matching possibilities (if there are none, the
672     match has failed). Thus, if there is more than one possible match,
673 nigel 77 this algorithm finds all of them, and in particular, it finds the long-
674 nigel 93 est. In PCRE, there is an option to stop the algorithm after the first
675 nigel 77 match (which is necessarily the shortest) has been found.
676    
677     Note that all the matches that are found start at the same point in the
678     subject. If the pattern
679    
680     cat(er(pillar)?)
681    
682 nigel 93 is matched against the string "the caterpillar catchment", the result
683     will be the three strings "cat", "cater", and "caterpillar" that start
684 nigel 77 at the fourth character of the subject. The algorithm does not automat-
685     ically move on to find matches that start at later positions.
686    
687     There are a number of features of PCRE regular expressions that are not
688 nigel 93 supported by the alternative matching algorithm. They are as follows:
689 nigel 77
690 nigel 93 1. Because the algorithm finds all possible matches, the greedy or
691     ungreedy nature of repetition quantifiers is not relevant. Greedy and
692     ungreedy quantifiers are treated in exactly the same way. However, pos-
693     sessive quantifiers can make a difference when what follows could also
694     match what is quantified, for example in a pattern like this:
695 nigel 77
696 nigel 93 ^a++\w!
697    
698     This pattern matches "aaab!" but not "aaa!", which would be matched by
699     a non-possessive quantifier. Similarly, if an atomic group is present,
700     it is matched as if it were a standalone pattern at the current point,
701     and the longest match is then "locked in" for the rest of the overall
702     pattern.
703    
704 nigel 77 2. When dealing with multiple paths through the tree simultaneously, it
705 nigel 93 is not straightforward to keep track of captured substrings for the
706     different matching possibilities, and PCRE's implementation of this
707 nigel 77 algorithm does not attempt to do this. This means that no captured sub-
708     strings are available.
709    
710 nigel 93 3. Because no substrings are captured, back references within the pat-
711 nigel 77 tern are not supported, and cause errors if encountered.
712    
713 nigel 93 4. For the same reason, conditional expressions that use a backrefer-
714     ence as the condition or test for a specific group recursion are not
715     supported.
716 nigel 77
717 ph10 172 5. Because many paths through the tree may be active, the \K escape
718     sequence, which resets the start of the match when encountered (but may
719     be on some paths and not on others), is not supported. It causes an
720     error if encountered.
721    
722     6. Callouts are supported, but the value of the capture_top field is
723 nigel 77 always 1, and the value of the capture_last field is always -1.
724    
725 ph10 211 7. The \C escape sequence, which (in the standard algorithm) matches a
726 ph10 172 single byte, even in UTF-8 mode, is not supported because the alterna-
727     tive algorithm moves through the subject string one character at a
728 nigel 93 time, for all active paths through the tree.
729 nigel 77
730 ph10 345 8. Except for (*FAIL), the backtracking control verbs such as (*PRUNE)
731     are not supported. (*FAIL) is supported, and behaves like a failing
732     negative assertion.
733 nigel 77
734 ph10 211
735 nigel 93 ADVANTAGES OF THE ALTERNATIVE ALGORITHM
736 nigel 77
737 ph10 345 Using the alternative matching algorithm provides the following advan-
738 nigel 93 tages:
739 nigel 77
740     1. All possible matches (at a single point in the subject) are automat-
741 ph10 345 ically found, and in particular, the longest match is found. To find
742 nigel 77 more than one match using the standard algorithm, you have to do kludgy
743     things with callouts.
744    
745 ph10 345 2. There is much better support for partial matching. The restrictions
746     on the content of the pattern that apply when using the standard algo-
747     rithm for partial matching do not apply to the alternative algorithm.
748     For non-anchored patterns, the starting position of a partial match is
749 nigel 93 available.
750 nigel 77
751 ph10 345 3. Because the alternative algorithm scans the subject string just
752     once, and never needs to backtrack, it is possible to pass very long
753     subject strings to the matching function in several pieces, checking
754 nigel 93 for partial matching each time.
755 nigel 77
756    
757 nigel 93 DISADVANTAGES OF THE ALTERNATIVE ALGORITHM
758 nigel 77
759 nigel 93 The alternative algorithm suffers from a number of disadvantages:
760 nigel 77
761 ph10 345 1. It is substantially slower than the standard algorithm. This is
762     partly because it has to search for all possible matches, but is also
763 nigel 77 because it is less susceptible to optimization.
764    
765     2. Capturing parentheses and back references are not supported.
766    
767 nigel 93 3. Although atomic groups are supported, their use does not provide the
768     performance advantage that it does for the standard algorithm.
769 nigel 77
770    
771 ph10 99 AUTHOR
772 nigel 77
773 ph10 99 Philip Hazel
774     University Computing Service
775     Cambridge CB2 3QH, England.
776    
777    
778     REVISION
779    
780 ph10 345 Last updated: 19 April 2008
781     Copyright (c) 1997-2008 University of Cambridge.
782 ph10 99 ------------------------------------------------------------------------------
783 ph10 259
784    
785 nigel 79 PCREAPI(3) PCREAPI(3)
786 nigel 77
787 nigel 79
788 nigel 73 NAME
789     PCRE - Perl-compatible regular expressions
790    
791 nigel 77
792 nigel 75 PCRE NATIVE API
793 nigel 63
794 nigel 73 #include <pcre.h>
795 nigel 41
796 nigel 73 pcre *pcre_compile(const char *pattern, int options,
797     const char **errptr, int *erroffset,
798     const unsigned char *tableptr);
799 nigel 41
800 nigel 77 pcre *pcre_compile2(const char *pattern, int options,
801     int *errorcodeptr,
802     const char **errptr, int *erroffset,
803     const unsigned char *tableptr);
804    
805 nigel 73 pcre_extra *pcre_study(const pcre *code, int options,
806     const char **errptr);
807 nigel 41
808 nigel 73 int pcre_exec(const pcre *code, const pcre_extra *extra,
809     const char *subject, int length, int startoffset,
810     int options, int *ovector, int ovecsize);
811 nigel 41
812 nigel 77 int pcre_dfa_exec(const pcre *code, const pcre_extra *extra,
813     const char *subject, int length, int startoffset,
814     int options, int *ovector, int ovecsize,
815     int *workspace, int wscount);
816    
817 nigel 73 int pcre_copy_named_substring(const pcre *code,
818     const char *subject, int *ovector,
819     int stringcount, const char *stringname,
820     char *buffer, int buffersize);
821 nigel 63
822 nigel 73 int pcre_copy_substring(const char *subject, int *ovector,
823     int stringcount, int stringnumber, char *buffer,
824     int buffersize);
825 nigel 41
826 nigel 73 int pcre_get_named_substring(const pcre *code,
827     const char *subject, int *ovector,
828     int stringcount, const char *stringname,
829     const char **stringptr);
830 nigel 63
831 nigel 73 int pcre_get_stringnumber(const pcre *code,
832     const char *name);
833 nigel 63
834 nigel 91 int pcre_get_stringtable_entries(const pcre *code,
835     const char *name, char **first, char **last);
836    
837 nigel 73 int pcre_get_substring(const char *subject, int *ovector,
838     int stringcount, int stringnumber,
839     const char **stringptr);
840 nigel 41
841 nigel 73 int pcre_get_substring_list(const char *subject,
842     int *ovector, int stringcount, const char ***listptr);
843 nigel 41
844 nigel 73 void pcre_free_substring(const char *stringptr);
845 nigel 49
846 nigel 73 void pcre_free_substring_list(const char **stringptr);
847 nigel 49
848 nigel 73 const unsigned char *pcre_maketables(void);
849 nigel 41
850 nigel 73 int pcre_fullinfo(const pcre *code, const pcre_extra *extra,
851     int what, void *where);
852 nigel 43
853 nigel 73 int pcre_info(const pcre *code, int *optptr, int *firstcharptr);
854 nigel 63
855 nigel 77 int pcre_refcount(pcre *code, int adjust);
856    
857 nigel 73 int pcre_config(int what, void *where);
858 nigel 41
859 nigel 73 char *pcre_version(void);
860 nigel 63
861 nigel 73 void *(*pcre_malloc)(size_t);
862 nigel 41
863 nigel 73 void (*pcre_free)(void *);
864 nigel 41
865 nigel 73 void *(*pcre_stack_malloc)(size_t);
866 nigel 41
867 nigel 73 void (*pcre_stack_free)(void *);
868 nigel 41
869 nigel 73 int (*pcre_callout)(pcre_callout_block *);
870 nigel 41
871 nigel 73
872 nigel 75 PCRE API OVERVIEW
873 nigel 41
874 nigel 73 PCRE has its own native API, which is described in this document. There
875 nigel 93 are also some wrapper functions that correspond to the POSIX regular
876 nigel 77 expression API. These are described in the pcreposix documentation.
877     Both of these APIs define a set of C function calls. A C++ wrapper is
878     distributed with PCRE. It is documented in the pcrecpp page.
879 nigel 43
880 nigel 77 The native API C function prototypes are defined in the header file
881     pcre.h, and on Unix systems the library itself is called libpcre. It
882 nigel 75 can normally be accessed by adding -lpcre to the command for linking an
883     application that uses PCRE. The header file defines the macros
884     PCRE_MAJOR and PCRE_MINOR to contain the major and minor release num-
885     bers for the library. Applications can use these to include support
886     for different releases of PCRE.
887 nigel 41
888 nigel 77 The functions pcre_compile(), pcre_compile2(), pcre_study(), and
889     pcre_exec() are used for compiling and matching regular expressions in
890     a Perl-compatible manner. A sample program that demonstrates the sim-
891     plest way of using them is provided in the file called pcredemo.c in
892     the source distribution. The pcresample documentation describes how to
893 ph10 313 compile and run it.
894 nigel 49
895 nigel 77 A second matching function, pcre_dfa_exec(), which is not Perl-compati-
896     ble, is also provided. This uses a different algorithm for the match-
897 nigel 91 ing. The alternative algorithm finds all possible matches (at a given
898 nigel 93 point in the subject), and scans the subject just once. However, this
899     algorithm does not return captured substrings. A description of the two
900     matching algorithms and their advantages and disadvantages is given in
901     the pcrematching documentation.
902 nigel 63
903 nigel 77 In addition to the main compiling and matching functions, there are
904     convenience functions for extracting captured substrings from a subject
905     string that is matched by pcre_exec(). They are:
906    
907 nigel 73 pcre_copy_substring()
908     pcre_copy_named_substring()
909     pcre_get_substring()
910     pcre_get_named_substring()
911     pcre_get_substring_list()
912 nigel 75 pcre_get_stringnumber()
913 nigel 91 pcre_get_stringtable_entries()
914 nigel 63
915 nigel 73 pcre_free_substring() and pcre_free_substring_list() are also provided,
916     to free the memory used for extracted strings.
917 nigel 41
918 nigel 77 The function pcre_maketables() is used to build a set of character
919     tables in the current locale for passing to pcre_compile(),
920     pcre_exec(), or pcre_dfa_exec(). This is an optional facility that is
921     provided for specialist use. Most commonly, no special tables are
922     passed, in which case internal tables that are generated when PCRE is
923     built are used.
924 nigel 49
925 nigel 75 The function pcre_fullinfo() is used to find out information about a
926     compiled pattern; pcre_info() is an obsolete version that returns only
927     some of the available information, but is retained for backwards com-
928     patibility. The function pcre_version() returns a pointer to a string
929 nigel 73 containing the version of PCRE and its date of release.
930 nigel 41
931 nigel 77 The function pcre_refcount() maintains a reference count in a data
932     block containing a compiled pattern. This is provided for the benefit
933     of object-oriented applications.
934    
935 nigel 75 The global variables pcre_malloc and pcre_free initially contain the
936     entry points of the standard malloc() and free() functions, respec-
937 nigel 73 tively. PCRE calls the memory management functions via these variables,
938 nigel 75 so a calling program can replace them if it wishes to intercept the
939 nigel 73 calls. This should be done before calling any PCRE functions.
940 nigel 41
941 nigel 75 The global variables pcre_stack_malloc and pcre_stack_free are also
942     indirections to memory management functions. These special functions
943     are used only when PCRE is compiled to use the heap for remembering
944 nigel 77 data, instead of recursive function calls, when running the pcre_exec()
945 nigel 91 function. See the pcrebuild documentation for details of how to do
946     this. It is a non-standard way of building PCRE, for use in environ-
947     ments that have limited stacks. Because of the greater use of memory
948     management, it runs more slowly. Separate functions are provided so
949     that special-purpose external code can be used for this case. When
950     used, these functions are always called in a stack-like manner (last
951     obtained, first freed), and always for memory blocks of the same size.
952     There is a discussion about PCRE's stack usage in the pcrestack docu-
953     mentation.
954 nigel 41
955 nigel 73 The global variable pcre_callout initially contains NULL. It can be set
956 nigel 77 by the caller to a "callout" function, which PCRE will then call at
957     specified points during a matching operation. Details are given in the
958 nigel 73 pcrecallout documentation.
959 nigel 41
960 nigel 73
961 nigel 91 NEWLINES
962    
963 ph10 150 PCRE supports five different conventions for indicating line breaks in
964 nigel 93 strings: a single CR (carriage return) character, a single LF (line-
965 ph10 150 feed) character, the two-character sequence CRLF, any of the three pre-
966     ceding, or any Unicode newline sequence. The Unicode newline sequences
967     are the three just mentioned, plus the single characters VT (vertical
968     tab, U+000B), FF (formfeed, U+000C), NEL (next line, U+0085), LS (line
969     separator, U+2028), and PS (paragraph separator, U+2029).
970 nigel 93
971     Each of the first three conventions is used by at least one operating
972     system as its standard newline sequence. When PCRE is built, a default
973     can be specified. The default default is LF, which is the Unix stan-
974     dard. When PCRE is run, the default can be overridden, either when a
975     pattern is compiled, or when it is matched.
976    
977 ph10 227 At compile time, the newline convention can be specified by the options
978     argument of pcre_compile(), or it can be specified by special text at
979     the start of the pattern itself; this overrides any other settings. See
980     the pcrepattern page for details of the special character sequences.
981    
982 nigel 91 In the PCRE documentation the word "newline" is used to mean "the char-
983 ph10 227 acter or pair of characters that indicate a line break". The choice of
984     newline convention affects the handling of the dot, circumflex, and
985 nigel 93 dollar metacharacters, the handling of #-comments in /x mode, and, when
986 ph10 227 CRLF is a recognized line ending sequence, the match position advance-
987     ment for a non-anchored pattern. There is more detail about this in the
988 ph10 231 section on pcre_exec() options below.
989 nigel 91
990 ph10 231 The choice of newline convention does not affect the interpretation of
991     the \n or \r escape sequences, nor does it affect what \R matches,
992     which is controlled in a similar way, but by separate options.
993 nigel 91
994 ph10 231
995 nigel 63 MULTITHREADING
996    
997 ph10 231 The PCRE functions can be used in multi-threading applications, with
998 nigel 73 the proviso that the memory management functions pointed to by
999     pcre_malloc, pcre_free, pcre_stack_malloc, and pcre_stack_free, and the
1000     callout function pointed to by pcre_callout, are shared by all threads.
1001 nigel 41
1002 ph10 231 The compiled form of a regular expression is not altered during match-
1003 nigel 73 ing, so the same compiled pattern can safely be used by several threads
1004     at once.
1005 nigel 41
1006    
1007 nigel 75 SAVING PRECOMPILED PATTERNS FOR LATER USE
1008    
1009     The compiled form of a regular expression can be saved and re-used at a
1010 ph10 231 later time, possibly by a different program, and even on a host other
1011     than the one on which it was compiled. Details are given in the
1012     pcreprecompile documentation. However, compiling a regular expression
1013     with one version of PCRE for use with a different version is not guar-
1014 ph10 155 anteed to work and may cause crashes.
1015 nigel 75
1016    
1017 nigel 63 CHECKING BUILD-TIME OPTIONS
1018 nigel 41
1019 nigel 73 int pcre_config(int what, void *where);
1020 nigel 63
1021 ph10 231 The function pcre_config() makes it possible for a PCRE client to dis-
1022 nigel 73 cover which optional features have been compiled into the PCRE library.
1023 ph10 231 The pcrebuild documentation has more details about these optional fea-
1024 nigel 73 tures.
1025 nigel 63
1026 ph10 231 The first argument for pcre_config() is an integer, specifying which
1027 nigel 73 information is required; the second argument is a pointer to a variable
1028 ph10 231 into which the information is placed. The following information is
1029 nigel 73 available:
1030 nigel 63
1031 nigel 73 PCRE_CONFIG_UTF8
1032 nigel 63
1033 ph10 231 The output is an integer that is set to one if UTF-8 support is avail-
1034 nigel 73 able; otherwise it is set to zero.
1035 nigel 63
1036 nigel 75 PCRE_CONFIG_UNICODE_PROPERTIES
1037    
1038 ph10 231 The output is an integer that is set to one if support for Unicode
1039 nigel 75 character properties is available; otherwise it is set to zero.
1040    
1041 nigel 73 PCRE_CONFIG_NEWLINE
1042 nigel 63
1043 ph10 231 The output is an integer whose value specifies the default character
1044     sequence that is recognized as meaning "newline". The four values that
1045 ph10 150 are supported are: 10 for LF, 13 for CR, 3338 for CRLF, -2 for ANYCRLF,
1046 ph10 231 and -1 for ANY. The default should normally be the standard sequence
1047 ph10 150 for your operating system.
1048 nigel 63
1049 ph10 231 PCRE_CONFIG_BSR
1050    
1051     The output is an integer whose value indicates what character sequences
1052     the \R escape sequence matches by default. A value of 0 means that \R
1053     matches any Unicode line ending sequence; a value of 1 means that \R
1054     matches only CR, LF, or CRLF. The default can be overridden when a pat-
1055     tern is compiled or matched.
1056    
1057 nigel 73 PCRE_CONFIG_LINK_SIZE
1058 nigel 63
1059 ph10 231 The output is an integer that contains the number of bytes used for
1060 nigel 73 internal linkage in compiled regular expressions. The value is 2, 3, or
1061 ph10 231 4. Larger values allow larger regular expressions to be compiled, at
1062     the expense of slower matching. The default value of 2 is sufficient
1063     for all but the most massive patterns, since it allows the compiled
1064 nigel 73 pattern to be up to 64K in size.
1065 nigel 63
1066 nigel 73 PCRE_CONFIG_POSIX_MALLOC_THRESHOLD
1067 nigel 63
1068 ph10 231 The output is an integer that contains the threshold above which the
1069     POSIX interface uses malloc() for output vectors. Further details are
1070 nigel 73 given in the pcreposix documentation.
1071 nigel 63
1072 nigel 73 PCRE_CONFIG_MATCH_LIMIT
1073 nigel 63
1074 nigel 73 The output is an integer that gives the default limit for the number of
1075 ph10 231 internal matching function calls in a pcre_exec() execution. Further
1076 nigel 73 details are given with pcre_exec() below.
1077 nigel 63
1078 nigel 87 PCRE_CONFIG_MATCH_LIMIT_RECURSION
1079    
1080 ph10 231 The output is an integer that gives the default limit for the depth of
1081     recursion when calling the internal matching function in a pcre_exec()
1082 nigel 87 execution. Further details are given with pcre_exec() below.
1083    
1084 nigel 73 PCRE_CONFIG_STACKRECURSE
1085 nigel 63
1086 ph10 231 The output is an integer that is set to one if internal recursion when
1087 nigel 77 running pcre_exec() is implemented by recursive function calls that use
1088 ph10 231 the stack to remember their state. This is the usual way that PCRE is
1089 nigel 77 compiled. The output is zero if PCRE was compiled to use blocks of data
1090 ph10 231 on the heap instead of recursive function calls. In this case,
1091     pcre_stack_malloc and pcre_stack_free are called to manage memory
1092 nigel 77 blocks on the heap, thus avoiding the use of the stack.
1093 nigel 73
1094    
1095 nigel 41 COMPILING A PATTERN
1096 nigel 63
1097 nigel 73 pcre *pcre_compile(const char *pattern, int options,
1098     const char **errptr, int *erroffset,
1099     const unsigned char *tableptr);
1100 nigel 63
1101 nigel 77 pcre *pcre_compile2(const char *pattern, int options,
1102     int *errorcodeptr,
1103     const char **errptr, int *erroffset,
1104     const unsigned char *tableptr);
1105 nigel 41
1106 nigel 77 Either of the functions pcre_compile() or pcre_compile2() can be called
1107     to compile a pattern into an internal form. The only difference between
1108 ph10 231 the two interfaces is that pcre_compile2() has an additional argument,
1109 nigel 77 errorcodeptr, via which a numerical error code can be returned.
1110    
1111     The pattern is a C string terminated by a binary zero, and is passed in
1112 ph10 231 the pattern argument. A pointer to a single block of memory that is
1113     obtained via pcre_malloc is returned. This contains the compiled code
1114 nigel 77 and related data. The pcre type is defined for the returned block; this
1115     is a typedef for a structure whose contents are not externally defined.
1116 nigel 91 It is up to the caller to free the memory (via pcre_free) when it is no
1117     longer required.
1118 nigel 77
1119 ph10 231 Although the compiled code of a PCRE regex is relocatable, that is, it
1120 nigel 73 does not depend on memory location, the complete pcre data block is not
1121 ph10 231 fully relocatable, because it may contain a copy of the tableptr argu-
1122 nigel 75 ment, which is an address (see below).
1123 nigel 41
1124 nigel 93 The options argument contains various bit settings that affect the com-
1125 ph10 231 pilation. It should be zero if no options are required. The available
1126     options are described below. Some of them, in particular, those that
1127     are compatible with Perl, can also be set and unset from within the
1128     pattern (see the detailed description in the pcrepattern documenta-
1129     tion). For these options, the contents of the options argument speci-
1130     fies their initial settings at the start of compilation and execution.
1131     The PCRE_ANCHORED and PCRE_NEWLINE_xxx options can be set at the time
1132 nigel 91 of matching as well as at compile time.
1133 nigel 41
1134 nigel 73 If errptr is NULL, pcre_compile() returns NULL immediately. Otherwise,
1135 ph10 231 if compilation of a pattern fails, pcre_compile() returns NULL, and
1136 nigel 73 sets the variable pointed to by errptr to point to a textual error mes-
1137 nigel 87 sage. This is a static string that is part of the library. You must not
1138     try to free it. The offset from the start of the pattern to the charac-
1139     ter where the error was discovered is placed in the variable pointed to
1140 ph10 231 by erroffset, which must not be NULL. If it is, an immediate error is
1141 nigel 73 given.
1142 nigel 53
1143 ph10 231 If pcre_compile2() is used instead of pcre_compile(), and the error-
1144     codeptr argument is not NULL, a non-zero error code number is returned
1145     via this argument in the event of an error. This is in addition to the
1146 nigel 77 textual error message. Error codes and messages are listed below.
1147    
1148 ph10 231 If the final argument, tableptr, is NULL, PCRE uses a default set of
1149     character tables that are built when PCRE is compiled, using the
1150     default C locale. Otherwise, tableptr must be an address that is the
1151     result of a call to pcre_maketables(). This value is stored with the
1152     compiled pattern, and used again by pcre_exec(), unless another table
1153 nigel 75 pointer is passed to it. For more discussion, see the section on locale
1154     support below.
1155 nigel 53
1156 ph10 231 This code fragment shows a typical straightforward call to pcre_com-
1157 nigel 73 pile():
1158 nigel 41
1159 nigel 73 pcre *re;
1160     const char *error;
1161     int erroffset;
1162     re = pcre_compile(
1163     "^A.*Z", /* the pattern */
1164     0, /* default options */
1165     &error, /* for error message */
1166     &erroffset, /* for error offset */
1167     NULL); /* use default character tables */
1168 nigel 41
1169 ph10 231 The following names for option bits are defined in the pcre.h header
1170 nigel 75 file:
1171 nigel 41
1172 nigel 73 PCRE_ANCHORED
1173 nigel 41
1174 nigel 73 If this bit is set, the pattern is forced to be "anchored", that is, it
1175 ph10 231 is constrained to match only at the first matching point in the string
1176     that is being searched (the "subject string"). This effect can also be
1177     achieved by appropriate constructs in the pattern itself, which is the
1178 nigel 73 only way to do it in Perl.
1179 nigel 41
1180 nigel 75 PCRE_AUTO_CALLOUT
1181    
1182     If this bit is set, pcre_compile() automatically inserts callout items,
1183 ph10 231 all with number 255, before each pattern item. For discussion of the
1184 nigel 75 callout facility, see the pcrecallout documentation.
1185    
1186 ph10 231 PCRE_BSR_ANYCRLF
1187     PCRE_BSR_UNICODE
1188    
1189     These options (which are mutually exclusive) control what the \R escape
1190     sequence matches. The choice is either to match only CR, LF, or CRLF,
1191     or to match any Unicode newline sequence. The default is specified when
1192     PCRE is built. It can be overridden from within the pattern, or by set-
1193     ting an option when a compiled pattern is matched.
1194    
1195 nigel 73 PCRE_CASELESS
1196 nigel 41
1197 ph10 231 If this bit is set, letters in the pattern match both upper and lower
1198     case letters. It is equivalent to Perl's /i option, and it can be
1199     changed within a pattern by a (?i) option setting. In UTF-8 mode, PCRE
1200     always understands the concept of case for characters whose values are
1201     less than 128, so caseless matching is always possible. For characters
1202     with higher values, the concept of case is supported if PCRE is com-
1203     piled with Unicode property support, but not otherwise. If you want to
1204     use caseless matching for characters 128 and above, you must ensure
1205     that PCRE is compiled with Unicode property support as well as with
1206 nigel 77 UTF-8 support.
1207 nigel 41
1208 nigel 73 PCRE_DOLLAR_ENDONLY
1209 nigel 41
1210 ph10 231 If this bit is set, a dollar metacharacter in the pattern matches only
1211     at the end of the subject string. Without this option, a dollar also
1212     matches immediately before a newline at the end of the string (but not
1213     before any other newlines). The PCRE_DOLLAR_ENDONLY option is ignored
1214     if PCRE_MULTILINE is set. There is no equivalent to this option in
1215 nigel 91 Perl, and no way to set it within a pattern.
1216 nigel 41
1217 nigel 73 PCRE_DOTALL
1218 nigel 41
1219 nigel 73 If this bit is set, a dot metacharater in the pattern matches all char-
1220 ph10 231 acters, including those that indicate newline. Without it, a dot does
1221     not match when the current position is at a newline. This option is
1222     equivalent to Perl's /s option, and it can be changed within a pattern
1223     by a (?s) option setting. A negative class such as [^a] always matches
1224 nigel 93 newline characters, independent of the setting of this option.
1225 nigel 63
1226 nigel 91 PCRE_DUPNAMES
1227    
1228 ph10 231 If this bit is set, names used to identify capturing subpatterns need
1229 nigel 91 not be unique. This can be helpful for certain types of pattern when it
1230 ph10 231 is known that only one instance of the named subpattern can ever be
1231     matched. There are more details of named subpatterns below; see also
1232 nigel 91 the pcrepattern documentation.
1233    
1234 nigel 73 PCRE_EXTENDED
1235 nigel 41
1236 ph10 231 If this bit is set, whitespace data characters in the pattern are
1237 nigel 77 totally ignored except when escaped or inside a character class. White-
1238     space does not include the VT character (code 11). In addition, charac-
1239     ters between an unescaped # outside a character class and the next new-
1240 ph10 231 line, inclusive, are also ignored. This is equivalent to Perl's /x
1241     option, and it can be changed within a pattern by a (?x) option set-
1242 nigel 91 ting.
1243 nigel 41
1244 ph10 231 This option makes it possible to include comments inside complicated
1245     patterns. Note, however, that this applies only to data characters.
1246     Whitespace characters may never appear within special character
1247     sequences in a pattern, for example within the sequence (?( which
1248 nigel 73 introduces a conditional subpattern.
1249 nigel 41
1250 nigel 73 PCRE_EXTRA
1251 nigel 41
1252 ph10 231 This option was invented in order to turn on additional functionality
1253     of PCRE that is incompatible with Perl, but it is currently of very
1254     little use. When set, any backslash in a pattern that is followed by a
1255     letter that has no special meaning causes an error, thus reserving
1256     these combinations for future expansion. By default, as in Perl, a
1257     backslash followed by a letter with no special meaning is treated as a
1258     literal. (Perl can, however, be persuaded to give a warning for this.)
1259     There are at present no other features controlled by this option. It
1260 nigel 91 can also be set by a (?X) option setting within a pattern.
1261 nigel 41
1262 nigel 77 PCRE_FIRSTLINE
1263    
1264 ph10 231 If this option is set, an unanchored pattern is required to match
1265     before or at the first newline in the subject string, though the
1266 nigel 91 matched text may continue over the newline.
1267 nigel 77
1268 ph10 345 PCRE_JAVASCRIPT_COMPAT
1269    
1270     If this option is set, PCRE's behaviour is changed in some ways so that
1271     it is compatible with JavaScript rather than Perl. The changes are as
1272     follows:
1273    
1274     (1) A lone closing square bracket in a pattern causes a compile-time
1275     error, because this is illegal in JavaScript (by default it is treated
1276     as a data character). Thus, the pattern AB]CD becomes illegal when this
1277     option is set.
1278    
1279     (2) At run time, a back reference to an unset subpattern group matches
1280     an empty string (by default this causes the current matching alterna-
1281     tive to fail). A pattern such as (\1)(a) succeeds when this option is
1282     set (assuming it can find an "a" in the subject), whereas it fails by
1283     default, for Perl compatibility.
1284    
1285 nigel 73 PCRE_MULTILINE
1286 nigel 41
1287 ph10 345 By default, PCRE treats the subject string as consisting of a single
1288     line of characters (even if it actually contains newlines). The "start
1289     of line" metacharacter (^) matches only at the start of the string,
1290     while the "end of line" metacharacter ($) matches only at the end of
1291 nigel 75 the string, or before a terminating newline (unless PCRE_DOLLAR_ENDONLY
1292     is set). This is the same as Perl.
1293 nigel 63
1294 ph10 345 When PCRE_MULTILINE it is set, the "start of line" and "end of line"
1295     constructs match immediately following or immediately before internal
1296     newlines in the subject string, respectively, as well as at the very
1297     start and end. This is equivalent to Perl's /m option, and it can be
1298 nigel 91 changed within a pattern by a (?m) option setting. If there are no new-
1299 ph10 345 lines in a subject string, or no occurrences of ^ or $ in a pattern,
1300 nigel 73 setting PCRE_MULTILINE has no effect.
1301 nigel 63
1302 nigel 91 PCRE_NEWLINE_CR
1303     PCRE_NEWLINE_LF
1304     PCRE_NEWLINE_CRLF
1305 ph10 150 PCRE_NEWLINE_ANYCRLF
1306 nigel 93 PCRE_NEWLINE_ANY
1307 nigel 91
1308 ph10 345 These options override the default newline definition that was chosen
1309     when PCRE was built. Setting the first or the second specifies that a
1310     newline is indicated by a single character (CR or LF, respectively).
1311     Setting PCRE_NEWLINE_CRLF specifies that a newline is indicated by the
1312     two-character CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies
1313 ph10 150 that any of the three preceding sequences should be recognized. Setting
1314 ph10 345 PCRE_NEWLINE_ANY specifies that any Unicode newline sequence should be
1315 ph10 150 recognized. The Unicode newline sequences are the three just mentioned,
1316 ph10 345 plus the single characters VT (vertical tab, U+000B), FF (formfeed,
1317     U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS
1318     (paragraph separator, U+2029). The last two are recognized only in
1319 ph10 150 UTF-8 mode.
1320 nigel 91
1321 ph10 345 The newline setting in the options word uses three bits that are
1322 ph10 150 treated as a number, giving eight possibilities. Currently only six are
1323 ph10 345 used (default plus the five values above). This means that if you set
1324     more than one newline option, the combination may or may not be sensi-
1325 ph10 150 ble. For example, PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to
1326 ph10 345 PCRE_NEWLINE_CRLF, but other combinations may yield unused numbers and
1327 ph10 150 cause an error.
1328 nigel 91
1329 ph10 345 The only time that a line break is specially recognized when compiling
1330     a pattern is if PCRE_EXTENDED is set, and an unescaped # outside a
1331     character class is encountered. This indicates a comment that lasts
1332     until after the next line break sequence. In other circumstances, line
1333     break sequences are treated as literal data, except that in
1334 nigel 93 PCRE_EXTENDED mode, both CR and LF are treated as whitespace characters
1335     and are therefore ignored.
1336    
1337     The newline option that is set at compile time becomes the default that
1338 ph10 345 is used for pcre_exec() and pcre_dfa_exec(), but it can be overridden.
1339 nigel 93
1340 nigel 73 PCRE_NO_AUTO_CAPTURE
1341 nigel 41
1342 nigel 73 If this option is set, it disables the use of numbered capturing paren-
1343 ph10 345 theses in the pattern. Any opening parenthesis that is not followed by
1344     ? behaves as if it were followed by ?: but named parentheses can still
1345     be used for capturing (and they acquire numbers in the usual way).
1346 nigel 73 There is no equivalent of this option in Perl.
1347 nigel 41
1348 nigel 73 PCRE_UNGREEDY
1349 nigel 41
1350 ph10 345 This option inverts the "greediness" of the quantifiers so that they
1351     are not greedy by default, but become greedy if followed by "?". It is
1352     not compatible with Perl. It can also be set by a (?U) option setting
1353 nigel 73 within the pattern.
1354 nigel 41
1355 nigel 73 PCRE_UTF8
1356 nigel 49
1357 ph10 345 This option causes PCRE to regard both the pattern and the subject as
1358     strings of UTF-8 characters instead of single-byte character strings.
1359     However, it is available only when PCRE is built to include UTF-8 sup-
1360     port. If not, the use of this option provokes an error. Details of how
1361     this option changes the behaviour of PCRE are given in the section on
1362 nigel 75 UTF-8 support in the main pcre page.
1363 nigel 71
1364 nigel 73 PCRE_NO_UTF8_CHECK
1365 nigel 71
1366 nigel 73 When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is
1367 ph10 345 automatically checked. There is a discussion about the validity of
1368     UTF-8 strings in the main pcre page. If an invalid UTF-8 sequence of
1369     bytes is found, pcre_compile() returns an error. If you already know
1370 ph10 211 that your pattern is valid, and you want to skip this check for perfor-
1371 ph10 345 mance reasons, you can set the PCRE_NO_UTF8_CHECK option. When it is
1372     set, the effect of passing an invalid UTF-8 string as a pattern is
1373     undefined. It may cause your program to crash. Note that this option
1374     can also be passed to pcre_exec() and pcre_dfa_exec(), to suppress the
1375 ph10 211 UTF-8 validity checking of subject strings.
1376 nigel 71
1377 nigel 73
1378 nigel 77 COMPILATION ERROR CODES
1379    
1380 ph10 345 The following table lists the error codes than may be returned by
1381     pcre_compile2(), along with the error messages that may be returned by
1382     both compiling functions. As PCRE has developed, some error codes have
1383 nigel 93 fallen out of use. To avoid confusion, they have not been re-used.
1384 nigel 77
1385     0 no error
1386     1 \ at end of pattern
1387     2 \c at end of pattern
1388     3 unrecognized character follows \
1389     4 numbers out of order in {} quantifier
1390     5 number too big in {} quantifier
1391     6 missing terminating ] for character class
1392     7 invalid escape sequence in character class
1393     8 range out of order in character class
1394     9 nothing to repeat
1395 nigel 93 10 [this code is not in use]
1396 nigel 77 11 internal error: unexpected repeat
1397 ph10 292 12 unrecognized character after (? or (?-
1398 nigel 77 13 POSIX named classes are supported only within a class
1399     14 missing )
1400     15 reference to non-existent subpattern
1401     16 erroffset passed as NULL
1402     17 unknown option bit(s) set
1403     18 missing ) after comment
1404 nigel 93 19 [this code is not in use]
1405 ph10 292 20 regular expression is too large
1406 nigel 77 21 failed to get memory
1407     22 unmatched parentheses
1408     23 internal error: code overflow
1409     24 unrecognized character after (?<
1410     25 lookbehind assertion is not fixed length
1411 nigel 91 26 malformed number or name after (?(
1412 nigel 77 27 conditional group contains more than two branches
1413     28 assertion expected after (?(
1414 ph10 182 29 (?R or (?[+-]digits must be followed by )
1415 nigel 77 30 unknown POSIX class name
1416     31 POSIX collating elements are not supported
1417     32 this version of PCRE is not compiled with PCRE_UTF8 support
1418 nigel 93 33 [this code is not in use]
1419 nigel 77 34 character value in \x{...} sequence is too large
1420     35 invalid condition (?(0)
1421     36 \C not allowed in lookbehind assertion
1422     37 PCRE does not support \L, \l, \N, \U, or \u
1423     38 number after (?C is > 255
1424     39 closing ) for (?C expected
1425     40 recursive call could loop indefinitely
1426     41 unrecognized character after (?P
1427 nigel 93 42 syntax error in subpattern name (missing terminator)
1428 nigel 91 43 two named subpatterns have the same name
1429 nigel 77 44 invalid UTF-8 string
1430     45 support for \P, \p, and \X has not been compiled
1431     46 malformed \P or \p sequence
1432     47 unknown property name after \P or \p
1433 nigel 91 48 subpattern name is too long (maximum 32 characters)
1434 ph10 292 49 too many named subpatterns (maximum 10000)
1435 ph10 202 50 [this code is not in use]
1436 nigel 91 51 octal value is greater than \377 (not in UTF-8 mode)
1437 nigel 93 52 internal error: overran compiling workspace
1438 ph10 345 53 internal error: previously-checked referenced subpattern not
1439 nigel 93 found
1440     54 DEFINE group contains more than one branch
1441     55 repeating a DEFINE group is not allowed
1442 ph10 231 56 inconsistent NEWLINE options
1443 ph10 345 57 \g is not followed by a braced, angle-bracketed, or quoted
1444     name/number or by a plain number
1445     58 a numbered reference must not be zero
1446 ph10 292 59 (*VERB) with an argument is not supported
1447     60 (*VERB) not recognized
1448     61 number is too big
1449     62 subpattern name expected
1450     63 digit expected after (?+
1451 ph10 345 64 ] is an invalid data character in JavaScript compatibility mode
1452 nigel 77
1453 ph10 345 The numbers 32 and 10000 in errors 48 and 49 are defaults; different
1454 ph10 292 values may be used if the limits were changed when PCRE was built.
1455 nigel 77
1456 ph10 292
1457 nigel 63 STUDYING A PATTERN
1458 nigel 49
1459 nigel 77 pcre_extra *pcre_study(const pcre *code, int options
1460 nigel 73 const char **errptr);
1461 nigel 63
1462 ph10 345 If a compiled pattern is going to be used several times, it is worth
1463 nigel 75 spending more time analyzing it in order to speed up the time taken for
1464 ph10 345 matching. The function pcre_study() takes a pointer to a compiled pat-
1465 nigel 75 tern as its first argument. If studying the pattern produces additional
1466 ph10 345 information that will help speed up matching, pcre_study() returns a
1467     pointer to a pcre_extra block, in which the study_data field points to
1468 nigel 75 the results of the study.
1469 nigel 41
1470 nigel 75 The returned value from pcre_study() can be passed directly to
1471 ph10 345 pcre_exec(). However, a pcre_extra block also contains other fields
1472     that can be set by the caller before the block is passed; these are
1473 nigel 75 described below in the section on matching a pattern.
1474 nigel 63
1475 ph10 345 If studying the pattern does not produce any additional information
1476 nigel 75 pcre_study() returns NULL. In that circumstance, if the calling program
1477 ph10 345 wants to pass any of the other fields to pcre_exec(), it must set up
1478 nigel 75 its own pcre_extra block.
1479 nigel 41
1480 ph10 345 The second argument of pcre_study() contains option bits. At present,
1481 nigel 75 no options are defined, and this argument should always be zero.
1482    
1483 ph10 345 The third argument for pcre_study() is a pointer for an error message.
1484     If studying succeeds (even if no data is returned), the variable it
1485     points to is set to NULL. Otherwise it is set to point to a textual
1486 nigel 87 error message. This is a static string that is part of the library. You
1487 ph10 345 must not try to free it. You should test the error pointer for NULL
1488 nigel 87 after calling pcre_study(), to be sure that it has run successfully.
1489 nigel 41
1490 nigel 73 This is a typical call to pcre_study():
1491 nigel 53
1492 nigel 73 pcre_extra *pe;
1493     pe = pcre_study(
1494     re, /* result of pcre_compile() */
1495     0, /* no options exist */
1496     &error); /* set to NULL or points to a message */
1497 nigel 53
1498 nigel 73 At present, studying a pattern is useful only for non-anchored patterns
1499 ph10 345 that do not have a single fixed starting character. A bitmap of possi-
1500 nigel 75 ble starting bytes is created.
1501 nigel 41
1502    
1503 nigel 63 LOCALE SUPPORT
1504 nigel 41
1505 ph10 345 PCRE handles caseless matching, and determines whether characters are
1506     letters, digits, or whatever, by reference to a set of tables, indexed
1507     by character value. When running in UTF-8 mode, this applies only to
1508     characters with codes less than 128. Higher-valued codes never match
1509     escapes such as \w or \d, but can be tested with \p if PCRE is built
1510     with Unicode character property support. The use of locales with Uni-
1511     code is discouraged. If you are handling characters with codes greater
1512     than 128, you should either use UTF-8 and Unicode, or use locales, but
1513 ph10 142 not try to mix the two.
1514 nigel 41
1515 ph10 345 PCRE contains an internal set of tables that are used when the final
1516     argument of pcre_compile() is NULL. These are sufficient for many
1517 ph10 142 applications. Normally, the internal tables recognize only ASCII char-
1518     acters. However, when PCRE is built, it is possible to cause the inter-
1519     nal tables to be rebuilt in the default "C" locale of the local system,
1520     which may cause them to be different.
1521 nigel 41
1522 ph10 345 The internal tables can always be overridden by tables supplied by the
1523 ph10 142 application that calls PCRE. These may be created in a different locale
1524 ph10 345 from the default. As more and more applications change to using Uni-
1525 ph10 142 code, the need for this locale support is expected to die away.
1526    
1527 ph10 345 External tables are built by calling the pcre_maketables() function,
1528     which has no arguments, in the relevant locale. The result can then be
1529     passed to pcre_compile() or pcre_exec() as often as necessary. For
1530     example, to build and use tables that are appropriate for the French
1531     locale (where accented characters with values greater than 128 are
1532 nigel 75 treated as letters), the following code could be used:
1533    
1534     setlocale(LC_CTYPE, "fr_FR");
1535 nigel 73 tables = pcre_maketables();
1536     re = pcre_compile(..., tables);
1537 nigel 41
1538 ph10 345 The locale name "fr_FR" is used on Linux and other Unix-like systems;
1539 ph10 142 if you are using Windows, the name for the French locale is "french".
1540    
1541 ph10 345 When pcre_maketables() runs, the tables are built in memory that is
1542     obtained via pcre_malloc. It is the caller's responsibility to ensure
1543     that the memory containing the tables remains available for as long as
1544 nigel 75 it is needed.
1545 nigel 41
1546 nigel 75 The pointer that is passed to pcre_compile() is saved with the compiled
1547 ph10 345 pattern, and the same tables are used via this pointer by pcre_study()
1548 nigel 75 and normally also by pcre_exec(). Thus, by default, for any single pat-
1549     tern, compilation, studying and matching all happen in the same locale,
1550     but different patterns can be compiled in different locales.
1551 nigel 41
1552 ph10 345 It is possible to pass a table pointer or NULL (indicating the use of
1553     the internal tables) to pcre_exec(). Although not intended for this
1554     purpose, this facility could be used to match a pattern in a different
1555 nigel 75 locale from the one in which it was compiled. Passing table pointers at
1556     run time is discussed below in the section on matching a pattern.
1557    
1558    
1559 nigel 63 INFORMATION ABOUT A PATTERN
1560 nigel 41
1561 nigel 73 int pcre_fullinfo(const pcre *code, const pcre_extra *extra,
1562     int what, void *where);
1563 nigel 63
1564 ph10 345 The pcre_fullinfo() function returns information about a compiled pat-
1565 nigel 73 tern. It replaces the obsolete pcre_info() function, which is neverthe-
1566     less retained for backwards compability (and is documented below).
1567 nigel 43
1568 ph10 345 The first argument for pcre_fullinfo() is a pointer to the compiled
1569     pattern. The second argument is the result of pcre_study(), or NULL if
1570     the pattern was not studied. The third argument specifies which piece
1571     of information is required, and the fourth argument is a pointer to a
1572     variable to receive the data. The yield of the function is zero for
1573 nigel 73 success, or one of the following negative numbers:
1574 nigel 41
1575 nigel 73 PCRE_ERROR_NULL the argument code was NULL
1576     the argument where was NULL
1577     PCRE_ERROR_BADMAGIC the "magic number" was not found
1578     PCRE_ERROR_BADOPTION the value of what was invalid
1579 nigel 53
1580 ph10 345 The "magic number" is placed at the start of each compiled pattern as
1581     an simple check against passing an arbitrary memory pointer. Here is a
1582     typical call of pcre_fullinfo(), to obtain the length of the compiled
1583 nigel 75 pattern:
1584 nigel 53
1585 nigel 73 int rc;
1586 nigel 91 size_t length;
1587 nigel 73 rc = pcre_fullinfo(
1588     re, /* result of pcre_compile() */
1589     pe, /* result of pcre_study(), or NULL */
1590     PCRE_INFO_SIZE, /* what is required */
1591     &length); /* where to put the data */
1592 nigel 43
1593 ph10 345 The possible values for the third argument are defined in pcre.h, and
1594 nigel 73 are as follows:
1595 nigel 43
1596 nigel 73 PCRE_INFO_BACKREFMAX
1597 nigel 41
1598 ph10 345 Return the number of the highest back reference in the pattern. The
1599     fourth argument should point to an int variable. Zero is returned if
1600 nigel 73 there are no back references.
1601 nigel 43
1602 nigel 73 PCRE_INFO_CAPTURECOUNT
1603 nigel 43
1604 ph10 345 Return the number of capturing subpatterns in the pattern. The fourth
1605 nigel 73 argument should point to an int variable.
1606 nigel 43
1607 nigel 77 PCRE_INFO_DEFAULT_TABLES
1608 nigel 75
1609 ph10 345 Return a pointer to the internal default character tables within PCRE.
1610     The fourth argument should point to an unsigned char * variable. This
1611 nigel 75 information call is provided for internal use by the pcre_study() func-
1612 ph10 345 tion. External callers can cause PCRE to use its internal tables by
1613 nigel 75 passing a NULL table pointer.
1614    
1615 nigel 73 PCRE_INFO_FIRSTBYTE
1616 nigel 43
1617 ph10 345 Return information about the first byte of any matched string, for a
1618     non-anchored pattern. The fourth argument should point to an int vari-
1619     able. (This option used to be called PCRE_INFO_FIRSTCHAR; the old name
1620 nigel 91 is still recognized for backwards compatibility.)
1621 nigel 41
1622 ph10 345 If there is a fixed first byte, for example, from a pattern such as
1623 nigel 93 (cat|cow|coyote), its value is returned. Otherwise, if either
1624 nigel 41
1625 ph10 345 (a) the pattern was compiled with the PCRE_MULTILINE option, and every
1626 nigel 73 branch starts with "^", or
1627 nigel 43
1628 nigel 73 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not
1629     set (if it were set, the pattern would be anchored),
1630 nigel 41
1631 ph10 345 -1 is returned, indicating that the pattern matches only at the start
1632     of a subject string or after any newline within the string. Otherwise
1633 nigel 73 -2 is returned. For anchored patterns, -2 is returned.
1634 nigel 41
1635 nigel 73 PCRE_INFO_FIRSTTABLE
1636 nigel 41
1637 ph10 345 If the pattern was studied, and this resulted in the construction of a
1638 nigel 73 256-bit table indicating a fixed set of bytes for the first byte in any
1639 ph10 345 matching string, a pointer to the table is returned. Otherwise NULL is
1640     returned. The fourth argument should point to an unsigned char * vari-
1641 nigel 73 able.
1642 nigel 43
1643 ph10 227 PCRE_INFO_HASCRORLF
1644    
1645 ph10 345 Return 1 if the pattern contains any explicit matches for CR or LF
1646     characters, otherwise 0. The fourth argument should point to an int
1647     variable. An explicit match is either a literal CR or LF character, or
1648 ph10 243 \r or \n.
1649 ph10 227
1650 ph10 172 PCRE_INFO_JCHANGED
1651    
1652 ph10 345 Return 1 if the (?J) or (?-J) option setting is used in the pattern,
1653     otherwise 0. The fourth argument should point to an int variable. (?J)
1654 ph10 286 and (?-J) set and unset the local PCRE_DUPNAMES option, respectively.
1655 ph10 172
1656 nigel 73 PCRE_INFO_LASTLITERAL
1657 nigel 43
1658 ph10 345 Return the value of the rightmost literal byte that must exist in any
1659     matched string, other than at its start, if such a byte has been
1660 nigel 73 recorded. The fourth argument should point to an int variable. If there
1661 ph10 345 is no such byte, -1 is returned. For anchored patterns, a last literal
1662     byte is recorded only if it follows something of variable length. For
1663 nigel 73 example, for the pattern /^a\d+z\d+/ the returned value is "z", but for
1664     /^a\dz\d/ the returned value is -1.
1665 nigel 63
1666 nigel 73 PCRE_INFO_NAMECOUNT
1667     PCRE_INFO_NAMEENTRYSIZE
1668     PCRE_INFO_NAMETABLE
1669 nigel 63
1670 ph10 345 PCRE supports the use of named as well as numbered capturing parenthe-
1671     ses. The names are just an additional way of identifying the parenthe-
1672 nigel 91 ses, which still acquire numbers. Several convenience functions such as
1673 ph10 345 pcre_get_named_substring() are provided for extracting captured sub-
1674     strings by name. It is also possible to extract the data directly, by
1675     first converting the name to a number in order to access the correct
1676 nigel 91 pointers in the output vector (described with pcre_exec() below). To do
1677 ph10 345 the conversion, you need to use the name-to-number map, which is
1678 nigel 91 described by these three values.
1679 nigel 63
1680 nigel 73 The map consists of a number of fixed-size entries. PCRE_INFO_NAMECOUNT
1681     gives the number of entries, and PCRE_INFO_NAMEENTRYSIZE gives the size
1682 ph10 345 of each entry; both of these return an int value. The entry size
1683     depends on the length of the longest name. PCRE_INFO_NAMETABLE returns
1684     a pointer to the first entry of the table (a pointer to char). The
1685 nigel 73 first two bytes of each entry are the number of the capturing parenthe-
1686 ph10 345 sis, most significant byte first. The rest of the entry is the corre-
1687     sponding name, zero terminated. The names are in alphabetical order.
1688 nigel 91 When PCRE_DUPNAMES is set, duplicate names are in order of their paren-
1689 ph10 345 theses numbers. For example, consider the following pattern (assume
1690     PCRE_EXTENDED is set, so white space - including newlines - is
1691 nigel 91 ignored):
1692 nigel 63
1693 nigel 93 (?<date> (?<year>(\d\d)?\d\d) -
1694     (?<month>\d\d) - (?<day>\d\d) )
1695 nigel 63
1696 ph10 345 There are four named subpatterns, so the table has four entries, and
1697     each entry in the table is eight bytes long. The table is as follows,
1698 nigel 75 with non-printing bytes shows in hexadecimal, and undefined bytes shown
1699     as ??:
1700 nigel 63
1701 nigel 73 00 01 d a t e 00 ??
1702     00 05 d a y 00 ?? ??
1703     00 04 m o n t h 00
1704     00 02 y e a r 00 ??
1705 nigel 63
1706 ph10 345 When writing code to extract data from named subpatterns using the
1707     name-to-number map, remember that the length of the entries is likely
1708 nigel 91 to be different for each compiled pattern.
1709 nigel 63
1710 ph10 172 PCRE_INFO_OKPARTIAL
1711    
1712 ph10 345 Return 1 if the pattern can be used for partial matching, otherwise 0.
1713     The fourth argument should point to an int variable. The pcrepartial
1714     documentation lists the restrictions that apply to patterns when par-
1715 ph10 172 tial matching is used.
1716    
1717 nigel 73 PCRE_INFO_OPTIONS
1718 nigel 63
1719 ph10 345 Return a copy of the options with which the pattern was compiled. The
1720     fourth argument should point to an unsigned long int variable. These
1721 nigel 73 option bits are those specified in the call to pcre_compile(), modified
1722 ph10 197 by any top-level option settings at the start of the pattern itself. In
1723 ph10 345 other words, they are the options that will be in force when matching
1724     starts. For example, if the pattern /(?im)abc(?-i)d/ is compiled with
1725     the PCRE_EXTENDED option, the result is PCRE_CASELESS, PCRE_MULTILINE,
1726 ph10 197 and PCRE_EXTENDED.
1727 nigel 63
1728 ph10 345 A pattern is automatically anchored by PCRE if all of its top-level
1729 nigel 73 alternatives begin with one of the following:
1730 nigel 63
1731 nigel 73 ^ unless PCRE_MULTILINE is set
1732     \A always
1733     \G always
1734     .* if PCRE_DOTALL is set and there are no back
1735     references to the subpattern in which .* appears
1736 nigel 63
1737 nigel 73 For such patterns, the PCRE_ANCHORED bit is set in the options returned
1738     by pcre_fullinfo().
1739 nigel 63
1740 nigel 73 PCRE_INFO_SIZE
1741 nigel 63
1742 ph10 345 Return the size of the compiled pattern, that is, the value that was
1743 nigel 73 passed as the argument to pcre_malloc() when PCRE was getting memory in
1744     which to place the compiled data. The fourth argument should point to a
1745     size_t variable.
1746 nigel 63
1747 nigel 73 PCRE_INFO_STUDYSIZE
1748 nigel 63
1749 nigel 75 Return the size of the data block pointed to by the study_data field in
1750 ph10 345 a pcre_extra block. That is, it is the value that was passed to
1751 nigel 73 pcre_malloc() when PCRE was getting memory into which to place the data
1752 ph10 345 created by pcre_study(). The fourth argument should point to a size_t
1753 nigel 73 variable.
1754 nigel 63
1755 nigel 73
1756 nigel 63 OBSOLETE INFO FUNCTION
1757    
1758 nigel 73 int pcre_info(const pcre *code, int *optptr, int *firstcharptr);
1759 nigel 63
1760 ph10 345 The pcre_info() function is now obsolete because its interface is too
1761     restrictive to return all the available data about a compiled pattern.
1762     New programs should use pcre_fullinfo() instead. The yield of
1763     pcre_info() is the number of capturing subpatterns, or one of the fol-
1764 nigel 73 lowing negative numbers:
1765 nigel 43
1766 nigel 73 PCRE_ERROR_NULL the argument code was NULL
1767     PCRE_ERROR_BADMAGIC the "magic number" was not found
1768 nigel 43
1769 ph10 345 If the optptr argument is not NULL, a copy of the options with which
1770     the pattern was compiled is placed in the integer it points to (see
1771 nigel 73 PCRE_INFO_OPTIONS above).
1772 nigel 43
1773 ph10 345 If the pattern is not anchored and the firstcharptr argument is not
1774     NULL, it is used to pass back information about the first character of
1775 nigel 73 any matched string (see PCRE_INFO_FIRSTBYTE above).
1776 nigel 43
1777    
1778 nigel 77 REFERENCE COUNTS
1779 nigel 53
1780 nigel 77 int pcre_refcount(pcre *code, int adjust);
1781    
1782 ph10 345 The pcre_refcount() function is used to maintain a reference count in
1783 nigel 77 the data block that contains a compiled pattern. It is provided for the
1784 ph10 345 benefit of applications that operate in an object-oriented manner,
1785 nigel 77 where different parts of the application may be using the same compiled
1786     pattern, but you want to free the block when they are all done.
1787    
1788     When a pattern is compiled, the reference count field is initialized to
1789 ph10 345 zero. It is changed only by calling this function, whose action is to
1790     add the adjust value (which may be positive or negative) to it. The
1791 nigel 77 yield of the function is the new value. However, the value of the count
1792 ph10 345 is constrained to lie between 0 and 65535, inclusive. If the new value
1793 nigel 77 is outside these limits, it is forced to the appropriate limit value.
1794    
1795 ph10 345 Except when it is zero, the reference count is not correctly preserved
1796     if a pattern is compiled on one host and then transferred to a host
1797 nigel 77 whose byte-order is different. (This seems a highly unlikely scenario.)
1798    
1799    
1800     MATCHING A PATTERN: THE TRADITIONAL FUNCTION
1801    
1802 nigel 73 int pcre_exec(const pcre *code, const pcre_extra *extra,
1803     const char *subject, int length, int startoffset,
1804     int options, int *ovector, int ovecsize);
1805 nigel 53
1806 ph10 345 The function pcre_exec() is called to match a subject string against a
1807     compiled pattern, which is passed in the code argument. If the pattern
1808 nigel 75 has been studied, the result of the study should be passed in the extra
1809 ph10 345 argument. This function is the main matching facility of the library,
1810 nigel 77 and it operates in a Perl-like manner. For specialist use there is also
1811 ph10 345 an alternative matching function, which is described below in the sec-
1812 nigel 77 tion about the pcre_dfa_exec() function.
1813 nigel 41
1814 ph10 345 In most applications, the pattern will have been compiled (and option-
1815     ally studied) in the same process that calls pcre_exec(). However, it
1816 nigel 75 is possible to save compiled patterns and study data, and then use them
1817 ph10 345 later in different processes, possibly even on different hosts. For a
1818 nigel 75 discussion about this, see the pcreprecompile documentation.
1819    
1820 nigel 73 Here is an example of a simple call to pcre_exec():
1821 nigel 53
1822 nigel 73 int rc;
1823     int ovector[30];
1824     rc = pcre_exec(
1825     re, /* result of pcre_compile() */
1826     NULL, /* we didn't study the pattern */
1827     "some string", /* the subject string */
1828     11, /* the length of the subject string */
1829     0, /* start at offset 0 in the subject */
1830     0, /* default options */
1831 nigel 75 ovector, /* vector of integers for substring information */
1832 nigel 77 30); /* number of elements (NOT size in bytes) */
1833 nigel 53
1834 nigel 75 Extra data for pcre_exec()
1835 nigel 63
1836 ph10 345 If the extra argument is not NULL, it must point to a pcre_extra data
1837     block. The pcre_study() function returns such a block (when it doesn't
1838     return NULL), but you can also create one for yourself, and pass addi-
1839     tional information in it. The pcre_extra block contains the following
1840 nigel 87 fields (not necessarily in this order):
1841 nigel 75
1842 nigel 73 unsigned long int flags;
1843     void *study_data;
1844     unsigned long int match_limit;
1845 nigel 87 unsigned long int match_limit_recursion;
1846 nigel 73 void *callout_data;
1847 nigel 75 const unsigned char *tables;
1848 nigel 63
1849 ph10 345 The flags field is a bitmap that specifies which of the other fields
1850 nigel 73 are set. The flag bits are:
1851 nigel 63
1852 nigel 73 PCRE_EXTRA_STUDY_DATA
1853     PCRE_EXTRA_MATCH_LIMIT
1854 nigel 87 PCRE_EXTRA_MATCH_LIMIT_RECURSION
1855 nigel 73 PCRE_EXTRA_CALLOUT_DATA
1856 nigel 75 PCRE_EXTRA_TABLES
1857 nigel 63
1858 ph10 345 Other flag bits should be set to zero. The study_data field is set in
1859     the pcre_extra block that is returned by pcre_study(), together with
1860 nigel 75 the appropriate flag bit. You should not set this yourself, but you may
1861 ph10 345 add to the block by setting the other fields and their corresponding
1862 nigel 75 flag bits.
1863 nigel 63
1864 nigel 73 The match_limit field provides a means of preventing PCRE from using up
1865 ph10 345 a vast amount of resources when running patterns that are not going to
1866     match, but which have a very large number of possibilities in their
1867     search trees. The classic example is the use of nested unlimited
1868 nigel 75 repeats.
1869 nigel 63
1870 ph10 345 Internally, PCRE uses a function called match() which it calls repeat-
1871     edly (sometimes recursively). The limit set by match_limit is imposed
1872     on the number of times this function is called during a match, which
1873     has the effect of limiting the amount of backtracking that can take
1874 nigel 87 place. For patterns that are not anchored, the count restarts from zero
1875     for each position in the subject string.
1876 nigel 75
1877 ph10 345 The default value for the limit can be set when PCRE is built; the
1878     default default is 10 million, which handles all but the most extreme
1879     cases. You can override the default by suppling pcre_exec() with a
1880     pcre_extra block in which match_limit is set, and
1881     PCRE_EXTRA_MATCH_LIMIT is set in the flags field. If the limit is
1882 nigel 73 exceeded, pcre_exec() returns PCRE_ERROR_MATCHLIMIT.
1883 nigel 63
1884 ph10 345 The match_limit_recursion field is similar to match_limit, but instead
1885 nigel 87 of limiting the total number of times that match() is called, it limits
1886 ph10 345 the depth of recursion. The recursion depth is a smaller number than
1887     the total number of calls, because not all calls to match() are recur-
1888 nigel 87 sive. This limit is of use only if it is set smaller than match_limit.
1889    
1890 ph10 345 Limiting the recursion depth limits the amount of stack that can be
1891 nigel 87 used, or, when PCRE has been compiled to use memory on the heap instead
1892     of the stack, the amount of heap memory that can be used.
1893    
1894 ph10 345 The default value for match_limit_recursion can be set when PCRE is
1895     built; the default default is the same value as the default for
1896     match_limit. You can override the default by suppling pcre_exec() with
1897     a pcre_extra block in which match_limit_recursion is set, and
1898     PCRE_EXTRA_MATCH_LIMIT_RECURSION is set in the flags field. If the
1899 nigel 87 limit is exceeded, pcre_exec() returns PCRE_ERROR_RECURSIONLIMIT.
1900    
1901 ph10 345 The pcre_callout field is used in conjunction with the "callout" fea-
1902 nigel 73 ture, which is described in the pcrecallout documentation.
1903 nigel 63
1904 ph10 345 The tables field is used to pass a character tables pointer to
1905     pcre_exec(); this overrides the value that is stored with the compiled
1906     pattern. A non-NULL value is stored with the compiled pattern only if
1907     custom tables were supplied to pcre_compile() via its tableptr argu-
1908 nigel 75 ment. If NULL is passed to pcre_exec() using this mechanism, it forces
1909 ph10 345 PCRE's internal tables to be used. This facility is helpful when re-
1910     using patterns that have been saved after compiling with an external
1911     set of tables, because the external tables might be at a different
1912     address when pcre_exec() is called. See the pcreprecompile documenta-
1913 nigel 75 tion for a discussion of saving compiled patterns for later use.
1914 nigel 41
1915 nigel 75 Option bits for pcre_exec()
1916 nigel 71
1917 ph10 345 The unused bits of the options argument for pcre_exec() must be zero.
1918     The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_xxx,
1919 nigel 91 PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK and
1920     PCRE_PARTIAL.
1921 nigel 41
1922 nigel 75 PCRE_ANCHORED
1923 nigel 41
1924 ph10 345 The PCRE_ANCHORED option limits pcre_exec() to matching at the first
1925     matching position. If a pattern was compiled with PCRE_ANCHORED, or
1926     turned out to be anchored by virtue of its contents, it cannot be made
1927 nigel 75 unachored at matching time.
1928    
1929 ph10 231 PCRE_BSR_ANYCRLF
1930     PCRE_BSR_UNICODE
1931    
1932     These options (which are mutually exclusive) control what the \R escape
1933 ph10 345 sequence matches. The choice is either to match only CR, LF, or CRLF,
1934     or to match any Unicode newline sequence. These options override the
1935 ph10 231 choice that was made or defaulted when the pattern was compiled.
1936    
1937 nigel 91 PCRE_NEWLINE_CR
1938     PCRE_NEWLINE_LF
1939     PCRE_NEWLINE_CRLF
1940 ph10 150 PCRE_NEWLINE_ANYCRLF
1941 nigel 93 PCRE_NEWLINE_ANY
1942 nigel 91
1943 ph10 345 These options override the newline definition that was chosen or
1944     defaulted when the pattern was compiled. For details, see the descrip-
1945     tion of pcre_compile() above. During matching, the newline choice
1946     affects the behaviour of the dot, circumflex, and dollar metacharac-
1947     ters. It may also alter the way the match position is advanced after a
1948 ph10 227 match failure for an unanchored pattern.
1949 nigel 91
1950 ph10 345 When PCRE_NEWLINE_CRLF, PCRE_NEWLINE_ANYCRLF, or PCRE_NEWLINE_ANY is
1951     set, and a match attempt for an unanchored pattern fails when the cur-
1952     rent position is at a CRLF sequence, and the pattern contains no
1953     explicit matches for CR or LF characters, the match position is
1954 ph10 227 advanced by two characters instead of one, in other words, to after the
1955     CRLF.
1956    
1957     The above rule is a compromise that makes the most common cases work as
1958 ph10 345 expected. For example, if the pattern is .+A (and the PCRE_DOTALL
1959 ph10 227 option is not set), it does not match the string "\r\nA" because, after
1960 ph10 345 failing at the start, it skips both the CR and the LF before retrying.
1961     However, the pattern [\r\n]A does match that string, because it con-
1962 ph10 227 tains an explicit CR or LF reference, and so advances only by one char-
1963 ph10 231 acter after the first failure.
1964 ph10 227
1965 ph10 231 An explicit match for CR of LF is either a literal appearance of one of
1966 ph10 345 those characters, or one of the \r or \n escape sequences. Implicit
1967     matches such as [^X] do not count, nor does \s (which includes CR and
1968 ph10 231 LF in the characters that it matches).
1969    
1970 ph10 345 Notwithstanding the above, anomalous effects may still occur when CRLF
1971 ph10 227 is a valid newline sequence and explicit \r or \n escapes appear in the
1972     pattern.
1973    
1974 nigel 73 PCRE_NOTBOL
1975 nigel 41
1976 nigel 75 This option specifies that first character of the subject string is not
1977 ph10 345 the beginning of a line, so the circumflex metacharacter should not
1978     match before it. Setting this without PCRE_MULTILINE (at compile time)
1979     causes circumflex never to match. This option affects only the behav-
1980 nigel 77 iour of the circumflex metacharacter. It does not affect \A.
1981 nigel 41
1982 nigel 73 PCRE_NOTEOL
1983 nigel 41
1984 nigel 75 This option specifies that the end of the subject string is not the end
1985 ph10 345 of a line, so the dollar metacharacter should not match it nor (except
1986     in multiline mode) a newline immediately before it. Setting this with-
1987 nigel 75 out PCRE_MULTILINE (at compile time) causes dollar never to match. This
1988 ph10 345 option affects only the behaviour of the dollar metacharacter. It does
1989 nigel 75 not affect \Z or \z.
1990 nigel 41
1991 nigel 73 PCRE_NOTEMPTY
1992 nigel 41
1993 nigel 73 An empty string is not considered to be a valid match if this option is
1994 ph10 345 set. If there are alternatives in the pattern, they are tried. If all
1995     the alternatives match the empty string, the entire match fails. For
1996 nigel 73 example, if the pattern
1997 nigel 41
1998 nigel 73 a?b?
1999 nigel 41
2000 ph10 345 is applied to a string not beginning with "a" or "b", it matches the
2001     empty string at the start of the subject. With PCRE_NOTEMPTY set, this
2002 nigel 73 match is not valid, so PCRE searches further into the string for occur-
2003     rences of "a" or "b".
2004 nigel 41
2005 nigel 73 Perl has no direct equivalent of PCRE_NOTEMPTY, but it does make a spe-
2006 ph10 345 cial case of a pattern match of the empty string within its split()
2007     function, and when using the /g modifier. It is possible to emulate
2008 nigel 73 Perl's behaviour after matching a null string by first trying the match
2009 nigel 75 again at the same offset with PCRE_NOTEMPTY and PCRE_ANCHORED, and then
2010 ph10 345 if that fails by advancing the starting offset (see below) and trying
2011 nigel 75 an ordinary match again. There is some code that demonstrates how to do
2012     this in the pcredemo.c sample program.
2013 nigel 41
2014 nigel 75 PCRE_NO_UTF8_CHECK
2015    
2016     When PCRE_UTF8 is set at compile time, the validity of the subject as a
2017 ph10 345 UTF-8 string is automatically checked when pcre_exec() is subsequently
2018     called. The value of startoffset is also checked to ensure that it
2019     points to the start of a UTF-8 character. There is a discussion about
2020     the validity of UTF-8 strings in the section on UTF-8 support in the
2021     main pcre page. If an invalid UTF-8 sequence of bytes is found,
2022     pcre_exec() returns the error PCRE_ERROR_BADUTF8. If startoffset con-
2023 ph10 211 tains an invalid value, PCRE_ERROR_BADUTF8_OFFSET is returned.
2024 nigel 75
2025 ph10 345 If you already know that your subject is valid, and you want to skip
2026     these checks for performance reasons, you can set the
2027     PCRE_NO_UTF8_CHECK option when calling pcre_exec(). You might want to
2028     do this for the second and subsequent calls to pcre_exec() if you are
2029     making repeated calls to find all the matches in a single subject
2030     string. However, you should be sure that the value of startoffset
2031     points to the start of a UTF-8 character. When PCRE_NO_UTF8_CHECK is
2032     set, the effect of passing an invalid UTF-8 string as a subject, or a
2033     value of startoffset that does not point to the start of a UTF-8 char-
2034 nigel 75 acter, is undefined. Your program may crash.
2035    
2036     PCRE_PARTIAL
2037    
2038 ph10 345 This option turns on the partial matching feature. If the subject
2039     string fails to match the pattern, but at some point during the match-
2040     ing process the end of the subject was reached (that is, the subject
2041     partially matches the pattern and the failure to match occurred only
2042     because there were not enough subject characters), pcre_exec() returns
2043     PCRE_ERROR_PARTIAL instead of PCRE_ERROR_NOMATCH. When PCRE_PARTIAL is
2044     used, there are restrictions on what may appear in the pattern. These
2045 nigel 75 are discussed in the pcrepartial documentation.
2046    
2047     The string to be matched by pcre_exec()
2048    
2049 ph10 345 The subject string is passed to pcre_exec() as a pointer in subject, a
2050     length in length, and a starting byte offset in startoffset. In UTF-8
2051     mode, the byte offset must point to the start of a UTF-8 character.
2052     Unlike the pattern string, the subject may contain binary zero bytes.
2053     When the starting offset is zero, the search for a match starts at the
2054 nigel 75 beginning of the subject, and this is by far the most common case.
2055 nigel 63
2056 ph10 345 A non-zero starting offset is useful when searching for another match
2057     in the same subject by calling pcre_exec() again after a previous suc-
2058     cess. Setting startoffset differs from just passing over a shortened
2059     string and setting PCRE_NOTBOL in the case of a pattern that begins
2060 nigel 73 with any kind of lookbehind. For example, consider the pattern
2061 nigel 41
2062 nigel 73 \Biss\B
2063 nigel 41
2064 ph10 345 which finds occurrences of "iss" in the middle of words. (\B matches
2065     only if the current position in the subject is not a word boundary.)
2066     When applied to the string "Mississipi" the first call to pcre_exec()
2067     finds the first occurrence. If pcre_exec() is called again with just
2068     the remainder of the subject, namely "issipi", it does not match,
2069 nigel 73 because \B is always false at the start of the subject, which is deemed
2070 ph10 345 to be a word boundary. However, if pcre_exec() is passed the entire
2071 nigel 75 string again, but with startoffset set to 4, it finds the second occur-
2072 ph10 345 rence of "iss" because it is able to look behind the starting point to
2073 nigel 75 discover that it is preceded by a letter.
2074 nigel 41
2075 ph10 345 If a non-zero starting offset is passed when the pattern is anchored,
2076 nigel 75 one attempt to match at the given offset is made. This can only succeed
2077 ph10 345 if the pattern does not require the match to be at the start of the
2078 nigel 75 subject.
2079 nigel 41
2080 nigel 75 How pcre_exec() returns captured substrings
2081    
2082 ph10 345 In general, a pattern matches a certain portion of the subject, and in
2083     addition, further substrings from the subject may be picked out by
2084     parts of the pattern. Following the usage in Jeffrey Friedl's book,
2085     this is called "capturing" in what follows, and the phrase "capturing
2086     subpattern" is used for a fragment of a pattern that picks out a sub-
2087     string. PCRE supports several other kinds of parenthesized subpattern
2088 nigel 73 that do not cause substrings to be captured.
2089 nigel 65
2090 ph10 345 Captured substrings are returned to the caller via a vector of integer
2091     offsets whose address is passed in ovector. The number of elements in
2092     the vector is passed in ovecsize, which must be a non-negative number.
2093 nigel 75 Note: this argument is NOT the size of ovector in bytes.
2094 nigel 41
2095 ph10 345 The first two-thirds of the vector is used to pass back captured sub-
2096     strings, each substring using a pair of integers. The remaining third
2097     of the vector is used as workspace by pcre_exec() while matching cap-
2098     turing subpatterns, and is not available for passing back information.
2099     The length passed in ovecsize should always be a multiple of three. If
2100 nigel 75 it is not, it is rounded down.
2101    
2102 ph10 345 When a match is successful, information about captured substrings is
2103     returned in pairs of integers, starting at the beginning of ovector,
2104     and continuing up to two-thirds of its length at the most. The first
2105 nigel 73 element of a pair is set to the offset of the first character in a sub-
2106 ph10 345 string, and the second is set to the offset of the first character
2107     after the end of a substring. The first pair, ovector[0] and ovec-
2108     tor[1], identify the portion of the subject string matched by the
2109     entire pattern. The next pair is used for the first capturing subpat-
2110 nigel 91 tern, and so on. The value returned by pcre_exec() is one more than the
2111     highest numbered pair that has been set. For example, if two substrings
2112 ph10 345 have been captured, the returned value is 3. If there are no capturing
2113     subpatterns, the return value from a successful match is 1, indicating
2114 nigel 91 that just the first pair of offsets has been set.
2115 nigel 41
2116 nigel 73 If a capturing subpattern is matched repeatedly, it is the last portion
2117 nigel 75 of the string that it matched that is returned.
2118 nigel 41
2119 ph10 345 If the vector is too small to hold all the captured substring offsets,
2120 nigel 75 it is used as far as possible (up to two-thirds of its length), and the
2121 ph10 345 function returns a value of zero. In particular, if the substring off-
2122 nigel 75 sets are not of interest, pcre_exec() may be called with ovector passed
2123 ph10 345 as NULL and ovecsize as zero. However, if the pattern contains back
2124     references and the ovector is not big enough to remember the related
2125     substrings, PCRE has to get additional memory for use during matching.
2126 nigel 73 Thus it is usually advisable to supply an ovector.
2127 nigel 41
2128 ph10 345 The pcre_info() function can be used to find out how many capturing
2129     subpatterns there are in a compiled pattern. The smallest size for
2130     ovector that will allow for n captured substrings, in addition to the
2131 nigel 91 offsets of the substring matched by the whole pattern, is (n+1)*3.
2132 nigel 41
2133 ph10 345 It is possible for capturing subpattern number n+1 to match some part
2134 nigel 91 of the subject when subpattern n has not been used at all. For example,
2135 ph10 345 if the string "abc" is matched against the pattern (a|(z))(bc) the
2136 nigel 91 return from the function is 4, and subpatterns 1 and 3 are matched, but
2137 ph10 345 2 is not. When this happens, both values in the offset pairs corre-
2138 nigel 91 sponding to unused subpatterns are set to -1.
2139 nigel 75
2140 ph10 345 Offset values that correspond to unused subpatterns at the end of the
2141     expression are also set to -1. For example, if the string "abc" is
2142     matched against the pattern (abc)(x(yz)?)? subpatterns 2 and 3 are not
2143     matched. The return from the function is 2, because the highest used
2144 nigel 91 capturing subpattern number is 1. However, you can refer to the offsets
2145 ph10 345 for the second and third capturing subpatterns if you wish (assuming
2146 nigel 91 the vector is large enough, of course).
2147    
2148 ph10 345 Some convenience functions are provided for extracting the captured
2149 nigel 91 substrings as separate strings. These are described below.
2150    
2151     Error return values from pcre_exec()
2152    
2153 ph10 345 If pcre_exec() fails, it returns a negative number. The following are
2154 nigel 73 defined in the header file:
2155 nigel 41
2156 nigel 73 PCRE_ERROR_NOMATCH (-1)
2157 nigel 41
2158 nigel 73 The subject string did not match the pattern.
2159 nigel 41
2160 nigel 73 PCRE_ERROR_NULL (-2)
2161 nigel 41
2162 ph10 345 Either code or subject was passed as NULL, or ovector was NULL and
2163 nigel 73 ovecsize was not zero.
2164 nigel 41
2165 nigel 73 PCRE_ERROR_BADOPTION (-3)
2166 nigel 41
2167 nigel 73 An unrecognized bit was set in the options argument.
2168 nigel 41
2169 nigel 73 PCRE_ERROR_BADMAGIC (-4)
2170 nigel 41
2171 ph10 345 PCRE stores a 4-byte "magic number" at the start of the compiled code,
2172 nigel 75 to catch the case when it is passed a junk pointer and to detect when a
2173     pattern that was compiled in an environment of one endianness is run in
2174 ph10 345 an environment with the other endianness. This is the error that PCRE
2175 nigel 75 gives when the magic number is not present.
2176 nigel 41
2177 nigel 93 PCRE_ERROR_UNKNOWN_OPCODE (-5)
2178 nigel 41
2179 nigel 73 While running the pattern match, an unknown item was encountered in the
2180 ph10 345 compiled pattern. This error could be caused by a bug in PCRE or by
2181 nigel 73 overwriting of the compiled pattern.
2182 nigel 41
2183 nigel 73 PCRE_ERROR_NOMEMORY (-6)
2184 nigel 41
2185 ph10 345 If a pattern contains back references, but the ovector that is passed
2186 nigel 73 to pcre_exec() is not big enough to remember the referenced substrings,
2187 ph10 345 PCRE gets a block of memory at the start of matching to use for this
2188     purpose. If the call via pcre_malloc() fails, this error is given. The
2189 nigel 75 memory is automatically freed at the end of matching.
2190 nigel 41
2191 nigel 73 PCRE_ERROR_NOSUBSTRING (-7)
2192 nigel 53
2193 ph10 345 This error is used by the pcre_copy_substring(), pcre_get_substring(),
2194 nigel 73 and pcre_get_substring_list() functions (see below). It is never
2195     returned by pcre_exec().
2196 nigel 63
2197 nigel 73 PCRE_ERROR_MATCHLIMIT (-8)
2198 nigel 63
2199 ph10 345 The backtracking limit, as specified by the match_limit field in a
2200     pcre_extra structure (or defaulted) was reached. See the description
2201 nigel 87 above.
2202    
2203 nigel 73 PCRE_ERROR_CALLOUT (-9)
2204 nigel 63
2205 nigel 73 This error is never generated by pcre_exec() itself. It is provided for
2206 ph10 345 use by callout functions that want to yield a distinctive error code.
2207 nigel 73 See the pcrecallout documentation for details.
2208 nigel 71
2209 nigel 73 PCRE_ERROR_BADUTF8 (-10)
2210 nigel 71
2211 ph10 345 A string that contains an invalid UTF-8 byte sequence was passed as a
2212 nigel 73 subject.
2213    
2214     PCRE_ERROR_BADUTF8_OFFSET (-11)
2215    
2216     The UTF-8 byte sequence that was passed as a subject was valid, but the
2217 ph10 345 value of startoffset did not point to the beginning of a UTF-8 charac-
2218 nigel 73 ter.
2219    
2220 nigel 77 PCRE_ERROR_PARTIAL (-12)
2221 nigel 73
2222 ph10 345 The subject string did not match, but it did match partially. See the
2223 nigel 75 pcrepartial documentation for details of partial matching.
2224    
2225 nigel 77 PCRE_ERROR_BADPARTIAL (-13)
2226 nigel 75
2227 ph10 345 The PCRE_PARTIAL option was used with a compiled pattern containing
2228     items that are not supported for partial matching. See the pcrepartial
2229 nigel 75 documentation for details of partial matching.
2230    
2231 nigel 77 PCRE_ERROR_INTERNAL (-14)
2232 nigel 75
2233 ph10 345 An unexpected internal error has occurred. This error could be caused
2234 nigel 75 by a bug in PCRE or by overwriting of the compiled pattern.
2235    
2236 nigel 77 PCRE_ERROR_BADCOUNT (-15)
2237 nigel 75
2238 ph10 345 This error is given if the value of the ovecsize argument is negative.
2239 nigel 75
2240 nigel 93 PCRE_ERROR_RECURSIONLIMIT (-21)
2241 nigel 75
2242 nigel 93 The internal recursion limit, as specified by the match_limit_recursion
2243 ph10 345 field in a pcre_extra structure (or defaulted) was reached. See the
2244 nigel 93 description above.
2245    
2246     PCRE_ERROR_BADNEWLINE (-23)
2247    
2248     An invalid combination of PCRE_NEWLINE_xxx options was given.
2249    
2250 ph10 197 Error numbers -16 to -20 and -22 are not used by pcre_exec().
2251 nigel 93
2252    
2253 nigel 63 EXTRACTING CAPTURED SUBSTRINGS BY NUMBER
2254    
2255 nigel 73 int pcre_copy_substring(const char *subject, int *ovector,
2256     int stringcount, int stringnumber, char *buffer,
2257     int buffersize);
2258 nigel 63
2259 nigel 73 int pcre_get_substring(const char *subject, int *ovector,
2260     int stringcount, int stringnumber,
2261     const char **stringptr);
2262 nigel 63
2263 nigel 73 int pcre_get_substring_list(const char *subject,
2264     int *ovector, int stringcount, const char ***listptr);
2265 nigel 63
2266 ph10 345 Captured substrings can be accessed directly by using the offsets
2267     returned by pcre_exec() in ovector. For convenience, the functions
2268 nigel 73 pcre_copy_substring(), pcre_get_substring(), and pcre_get_sub-
2269 ph10 345 string_list() are provided for extracting captured substrings as new,
2270     separate, zero-terminated strings. These functions identify substrings
2271     by number. The next section describes functions for extracting named
2272 nigel 91 substrings.
2273 nigel 41
2274 ph10 345 A substring that contains a binary zero is correctly extracted and has
2275     a further zero added on the end, but the result is not, of course, a C
2276     string. However, you can process such a string by referring to the
2277     length that is returned by pcre_copy_substring() and pcre_get_sub-
2278 nigel 91 string(). Unfortunately, the interface to pcre_get_substring_list() is
2279 ph10 345 not adequate for handling strings containing binary zeros, because the
2280 nigel 91 end of the final string is not independently indicated.
2281    
2282 ph10 345 The first three arguments are the same for all three of these func-
2283     tions: subject is the subject string that has just been successfully
2284 nigel 73 matched, ovector is a pointer to the vector of integer offsets that was
2285     passed to pcre_exec(), and stringcount is the number of substrings that
2286 ph10 345 were captured by the match, including the substring that matched the
2287 nigel 75 entire regular expression. This is the value returned by pcre_exec() if
2288 ph10 345 it is greater than zero. If pcre_exec() returned zero, indicating that
2289     it ran out of space in ovector, the value passed as stringcount should
2290 nigel 75 be the number of elements in the vector divided by three.
2291 nigel 41
2292 ph10 345 The functions pcre_copy_substring() and pcre_get_substring() extract a
2293     single substring, whose number is given as stringnumber. A value of
2294     zero extracts the substring that matched the entire pattern, whereas
2295     higher values extract the captured substrings. For pcre_copy_sub-
2296     string(), the string is placed in buffer, whose length is given by
2297     buffersize, while for pcre_get_substring() a new block of memory is
2298     obtained via pcre_malloc, and its address is returned via stringptr.
2299     The yield of the function is the length of the string, not including
2300 nigel 93 the terminating zero, or one of these error codes:
2301 nigel 41
2302 nigel 73 PCRE_ERROR_NOMEMORY (-6)
2303 nigel 41
2304 ph10 345 The buffer was too small for pcre_copy_substring(), or the attempt to
2305 nigel 73 get memory failed for pcre_get_substring().
2306 nigel 41
2307 nigel 73 PCRE_ERROR_NOSUBSTRING (-7)
2308 nigel 41
2309 nigel 73 There is no substring whose number is stringnumber.
2310 nigel 41
2311 ph10 345 The pcre_get_substring_list() function extracts all available sub-
2312     strings and builds a list of pointers to them. All this is done in a
2313 nigel 75 single block of memory that is obtained via pcre_malloc. The address of
2314 ph10 345 the memory block is returned via listptr, which is also the start of
2315     the list of string pointers. The end of the list is marked by a NULL
2316     pointer. The yield of the function is zero if all went well, or the
2317 nigel 93 error code
2318 nigel 41
2319 nigel 73 PCRE_ERROR_NOMEMORY (-6)
2320 nigel 41
2321 nigel 73 if the attempt to get the memory block failed.
2322 nigel 41
2323 ph10 345 When any of these functions encounter a substring that is unset, which
2324     can happen when capturing subpattern number n+1 matches some part of
2325     the subject, but subpattern n has not been used at all, they return an
2326 nigel 73 empty string. This can be distinguished from a genuine zero-length sub-
2327 ph10 345 string by inspecting the appropriate offset in ovector, which is nega-
2328 nigel 73 tive for unset substrings.
2329 nigel 41
2330 ph10 345 The two convenience functions pcre_free_substring() and pcre_free_sub-
2331     string_list() can be used to free the memory returned by a previous
2332 nigel 75 call of pcre_get_substring() or pcre_get_substring_list(), respec-
2333 ph10 345 tively. They do nothing more than call the function pointed to by
2334     pcre_free, which of course could be called directly from a C program.
2335     However, PCRE is used in some situations where it is linked via a spe-
2336     cial interface to another programming language that cannot use
2337     pcre_free directly; it is for these cases that the functions are pro-
2338 nigel 77 vided.
2339 nigel 41
2340 nigel 73
2341 nigel 63 EXTRACTING CAPTURED SUBSTRINGS BY NAME
2342 nigel 41
2343 nigel 75 int pcre_get_stringnumber(const pcre *code,
2344     const char *name);
2345    
2346 nigel 73 int pcre_copy_named_substring(const pcre *code,
2347     const char *subject, int *ovector,
2348     int stringcount, const char *stringname,
2349     char *buffer, int buffersize);
2350 nigel 41
2351 nigel 73 int pcre_get_named_substring(const pcre *code,
2352     const char *subject, int *ovector,
2353     int stringcount, const char *stringname,
2354     const char **stringptr);
2355 nigel 41
2356 ph10 345 To extract a substring by name, you first have to find associated num-
2357 nigel 75 ber. For example, for this pattern
2358 nigel 41
2359 nigel 93 (a+)b(?<xxx>\d+)...
2360 nigel 63
2361 nigel 91 the number of the subpattern called "xxx" is 2. If the name is known to
2362     be unique (PCRE_DUPNAMES was not set), you can find the number from the
2363     name by calling pcre_get_stringnumber(). The first argument is the com-
2364     piled pattern, and the second is the name. The yield of the function is
2365 ph10 345 the subpattern number, or PCRE_ERROR_NOSUBSTRING (-7) if there is no
2366 nigel 91 subpattern of that name.
2367 nigel 63
2368 nigel 75 Given the number, you can extract the substring directly, or use one of
2369     the functions described in the previous section. For convenience, there
2370     are also two functions that do the whole job.
2371    
2372 ph10 345 Most of the arguments of pcre_copy_named_substring() and
2373     pcre_get_named_substring() are the same as those for the similarly
2374     named functions that extract by number. As these are described in the
2375     previous section, they are not re-described here. There are just two
2376 nigel 75 differences:
2377 nigel 63
2378 ph10 345 First, instead of a substring number, a substring name is given. Sec-
2379 nigel 73 ond, there is an extra argument, given at the start, which is a pointer
2380 ph10 345 to the compiled pattern. This is needed in order to gain access to the
2381 nigel 73 name-to-number translation table.
2382 nigel 63
2383 ph10 345 These functions call pcre_get_stringnumber(), and if it succeeds, they
2384     then call pcre_copy_substring() or pcre_get_substring(), as appropri-
2385     ate. NOTE: If PCRE_DUPNAMES is set and there are duplicate names, the
2386 ph10 128 behaviour may not be what you want (see the next section).
2387 nigel 63
2388 nigel 77
2389 nigel 91 DUPLICATE SUBPATTERN NAMES
2390    
2391     int pcre_get_stringtable_entries(const pcre *code,
2392     const char *name, char **first, char **last);
2393    
2394 ph10 345 When a pattern is compiled with the PCRE_DUPNAMES option, names for
2395     subpatterns are not required to be unique. Normally, patterns with
2396     duplicate names are such that in any one match, only one of the named
2397     subpatterns participates. An example is shown in the pcrepattern docu-
2398 ph10 208 mentation.
2399    
2400 ph10 345 When duplicates are present, pcre_copy_named_substring() and
2401     pcre_get_named_substring() return the first substring corresponding to
2402     the given name that is set. If none are set, PCRE_ERROR_NOSUBSTRING
2403     (-7) is returned; no data is returned. The pcre_get_stringnumber()
2404     function returns one of the numbers that are associated with the name,
2405 ph10 208 but it is not defined which it is.
2406 nigel 91
2407 ph10 345 If you want to get full details of all captured substrings for a given
2408     name, you must use the pcre_get_stringtable_entries() function. The
2409 nigel 91 first argument is the compiled pattern, and the second is the name. The
2410 ph10 345 third and fourth are pointers to variables which are updated by the
2411 nigel 91 function. After it has run, they point to the first and last entries in
2412 ph10 345 the name-to-number table for the given name. The function itself
2413     returns the length of each entry, or PCRE_ERROR_NOSUBSTRING (-7) if
2414     there are none. The format of the table is described above in the sec-
2415     tion entitled Information about a pattern. Given all the relevant
2416     entries for the name, you can extract each of their numbers, and hence
2417 nigel 93 the captured data, if any.
2418 nigel 91
2419    
2420 nigel 77 FINDING ALL POSSIBLE MATCHES
2421    
2422 ph10 345 The traditional matching function uses a similar algorithm to Perl,
2423 nigel 77 which stops when it finds the first match, starting at a given point in
2424 ph10 345 the subject. If you want to find all possible matches, or the longest
2425     possible match, consider using the alternative matching function (see
2426     below) instead. If you cannot use the alternative function, but still
2427     need to find all possible matches, you can kludge it up by making use
2428 nigel 77 of the callout facility, which is described in the pcrecallout documen-
2429     tation.
2430    
2431     What you have to do is to insert a callout right at the end of the pat-
2432 ph10 345 tern. When your callout function is called, extract and save the cur-
2433     rent matched substring. Then return 1, which forces pcre_exec() to
2434     backtrack and try other alternatives. Ultimately, when it runs out of
2435 nigel 77 matches, pcre_exec() will yield PCRE_ERROR_NOMATCH.
2436    
2437    
2438     MATCHING A PATTERN: THE ALTERNATIVE FUNCTION
2439    
2440     int pcre_dfa_exec(const pcre *code, const pcre_extra *extra,
2441     const char *subject, int length, int startoffset,
2442     int options, int *ovector, int ovecsize,
2443     int *workspace, int wscount);
2444    
2445 ph10 345 The function pcre_dfa_exec() is called to match a subject string
2446     against a compiled pattern, using a matching algorithm that scans the
2447     subject string just once, and does not backtrack. This has different
2448     characteristics to the normal algorithm, and is not compatible with
2449     Perl. Some of the features of PCRE patterns are not supported. Never-
2450     theless, there are times when this kind of matching can be useful. For
2451 nigel 93 a discussion of the two matching algorithms, see the pcrematching docu-
2452     mentation.
2453 nigel 77
2454 ph10 345 The arguments for the pcre_dfa_exec() function are the same as for
2455 nigel 77 pcre_exec(), plus two extras. The ovector argument is used in a differ-
2456 ph10 345 ent way, and this is described below. The other common arguments are
2457     used in the same way as for pcre_exec(), so their description is not
2458 nigel 77 repeated here.
2459    
2460 ph10 345 The two additional arguments provide workspace for the function. The
2461     workspace vector should contain at least 20 elements. It is used for
2462 nigel 77 keeping track of multiple paths through the pattern tree. More
2463 ph10 345 workspace will be needed for patterns and subjects where there are a
2464 nigel 91 lot of potential matches.
2465 nigel 77
2466 nigel 87 Here is an example of a simple call to pcre_dfa_exec():
2467 nigel 77
2468     int rc;
2469     int ovector[10];
2470     int wspace[20];
2471 nigel 87 rc = pcre_dfa_exec(
2472 nigel 77 re, /* result of pcre_compile() */
2473     NULL, /* we didn't study the pattern */
2474     "some string", /* the subject string */
2475     11, /* the length of the subject string */
2476     0, /* start at offset 0 in the subject */
2477     0, /* default options */
2478     ovector, /* vector of integers for substring information */
2479     10, /* number of elements (NOT size in bytes) */
2480     wspace, /* working space vector */
2481     20); /* number of elements (NOT size in bytes) */
2482    
2483     Option bits for pcre_dfa_exec()
2484    
2485 ph10 345 The unused bits of the options argument for pcre_dfa_exec() must be
2486     zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEW-
2487     LINE_xxx, PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK,
2488 nigel 91 PCRE_PARTIAL, PCRE_DFA_SHORTEST, and PCRE_DFA_RESTART. All but the last
2489     three of these are the same as for pcre_exec(), so their description is
2490     not repeated here.
2491 nigel 77
2492     PCRE_PARTIAL
2493    
2494 ph10 345 This has the same general effect as it does for pcre_exec(), but the
2495     details are slightly different. When PCRE_PARTIAL is set for
2496     pcre_dfa_exec(), the return code PCRE_ERROR_NOMATCH is converted into
2497     PCRE_ERROR_PARTIAL if the end of the subject is reached, there have
2498 nigel 77 been no complete matches, but there is still at least one matching pos-
2499 ph10 345 sibility. The portion of the string that provided the partial match is
2500 nigel 77 set as the first matching string.
2501    
2502     PCRE_DFA_SHORTEST
2503    
2504 ph10 345 Setting the PCRE_DFA_SHORTEST option causes the matching algorithm to
2505 nigel 93 stop as soon as it has found one match. Because of the way the alterna-
2506 ph10 345 tive algorithm works, this is necessarily the shortest possible match
2507 nigel 93 at the first possible matching point in the subject string.
2508 nigel 77
2509     PCRE_DFA_RESTART
2510    
2511 ph10 345 When pcre_dfa_exec() is called with the PCRE_PARTIAL option, and
2512     returns a partial match, it is possible to call it again, with addi-
2513     tional subject characters, and have it continue with the same match.
2514     The PCRE_DFA_RESTART option requests this action; when it is set, the
2515     workspace and wscount options must reference the same vector as before
2516     because data about the match so far is left in them after a partial
2517     match. There is more discussion of this facility in the pcrepartial
2518 nigel 77 documentation.
2519    
2520     Successful returns from pcre_dfa_exec()
2521    
2522 ph10 345 When pcre_dfa_exec() succeeds, it may have matched more than one sub-
2523 nigel 77 string in the subject. Note, however, that all the matches from one run
2524 ph10 345 of the function start at the same point in the subject. The shorter
2525     matches are all initial substrings of the longer matches. For example,
2526 nigel 77 if the pattern
2527    
2528     <.*>
2529    
2530     is matched against the string
2531    
2532     This is <something> <something else> <something further> no more
2533    
2534     the three matched strings are
2535    
2536     <something>
2537     <something> <something else>
2538     <something> <something else> <something further>
2539    
2540 ph10 345 On success, the yield of the function is a number greater than zero,
2541     which is the number of matched substrings. The substrings themselves
2542     are returned in ovector. Each string uses two elements; the first is
2543     the offset to the start, and the second is the offset to the end. In
2544     fact, all the strings have the same start offset. (Space could have
2545     been saved by giving this only once, but it was decided to retain some
2546     compatibility with the way pcre_exec() returns data, even though the
2547 nigel 93 meaning of the strings is different.)
2548 nigel 77
2549     The strings are returned in reverse order of length; that is, the long-
2550 ph10 345 est matching string is given first. If there were too many matches to
2551     fit into ovector, the yield of the function is zero, and the vector is
2552 nigel 77 filled with the longest matches.
2553    
2554     Error returns from pcre_dfa_exec()
2555    
2556 ph10 345 The pcre_dfa_exec() function returns a negative number when it fails.
2557     Many of the errors are the same as for pcre_exec(), and these are
2558     described above. There are in addition the following errors that are
2559 nigel 77 specific to pcre_dfa_exec():
2560    
2561     PCRE_ERROR_DFA_UITEM (-16)
2562    
2563 ph10 345 This return is given if pcre_dfa_exec() encounters an item in the pat-
2564     tern that it does not support, for instance, the use of \C or a back
2565 nigel 77 reference.
2566    
2567     PCRE_ERROR_DFA_UCOND (-17)
2568    
2569 ph10 345 This return is given if pcre_dfa_exec() encounters a condition item
2570     that uses a back reference for the condition, or a test for recursion
2571 nigel 93 in a specific group. These are not supported.
2572 nigel 77
2573     PCRE_ERROR_DFA_UMLIMIT (-18)
2574    
2575 ph10 345 This return is given if pcre_dfa_exec() is called with an extra block
2576 nigel 77 that contains a setting of the match_limit field. This is not supported
2577     (it is meaningless).
2578    
2579     PCRE_ERROR_DFA_WSSIZE (-19)
2580    
2581 ph10 345 This return is given if pcre_dfa_exec() runs out of space in the
2582 nigel 77 workspace vector.
2583    
2584     PCRE_ERROR_DFA_RECURSE (-20)
2585    
2586 ph10 345 When a recursive subpattern is processed, the matching function calls
2587     itself recursively, using private vectors for ovector and workspace.
2588     This error is given if the output vector is not large enough. This
2589 nigel 77 should be extremely rare, as a vector of size 1000 is used.
2590    
2591 nigel 93
2592     SEE ALSO
2593    
2594 ph10 345 pcrebuild(3), pcrecallout(3), pcrecpp(3)(3), pcrematching(3), pcrepar-
2595     tial(3), pcreposix(3), pcreprecompile(3), pcresample(3), pcrestack(3).
2596 nigel 93
2597 nigel 63
2598 ph10 99 AUTHOR
2599 nigel 63
2600 ph10 99 Philip Hazel
2601     University Computing Service
2602     Cambridge CB2 3QH, England.
2603    
2604    
2605     REVISION
2606    
2607 ph10 345 Last updated: 12 April 2008
2608 ph10 313 Copyright (c) 1997-2008 University of Cambridge.
2609 ph10 99 ------------------------------------------------------------------------------
2610 ph10 259
2611    
2612 nigel 79 PCRECALLOUT(3) PCRECALLOUT(3)
2613 nigel 63
2614 nigel 79
2615 nigel 73 NAME
2616     PCRE - Perl-compatible regular expressions
2617    
2618 nigel 77
2619 nigel 63 PCRE CALLOUTS
2620    
2621 nigel 73 int (*pcre_callout)(pcre_callout_block *);
2622 nigel 63
2623 nigel 73 PCRE provides a feature called "callout", which is a means of temporar-
2624     ily passing control to the caller of PCRE in the middle of pattern
2625     matching. The caller of PCRE provides an external function by putting
2626     its entry point in the global variable pcre_callout. By default, this
2627     variable contains NULL, which disables all calling out.
2628 nigel 63
2629 nigel 73 Within a regular expression, (?C) indicates the points at which the
2630     external function is to be called. Different callout points can be
2631     identified by putting a number less than 256 after the letter C. The
2632     default value is zero. For example, this pattern has two callout
2633     points:
2634 nigel 63
2635 ph10 155 (?C1)abc(?C2)def
2636 nigel 63
2637 nigel 75 If the PCRE_AUTO_CALLOUT option bit is set when pcre_compile() is
2638     called, PCRE automatically inserts callouts, all with number 255,
2639     before each item in the pattern. For example, if PCRE_AUTO_CALLOUT is
2640     used with the pattern
2641 nigel 63
2642 nigel 75 A(\d{2}|--)
2643    
2644     it is processed as if it were
2645    
2646     (?C255)A(?C255)((?C255)\d{2}(?C255)|(?C255)-(?C255)-(?C255))(?C255)
2647    
2648     Notice that there is a callout before and after each parenthesis and
2649     alternation bar. Automatic callouts can be used for tracking the
2650     progress of pattern matching. The pcretest command has an option that
2651     sets automatic callouts; when it is used, the output indicates how the
2652     pattern is matched. This is useful information when you are trying to
2653     optimize the performance of a particular pattern.
2654    
2655    
2656     MISSING CALLOUTS
2657    
2658     You should be aware that, because of optimizations in the way PCRE
2659     matches patterns, callouts sometimes do not happen. For example, if the
2660     pattern is
2661    
2662     ab(?C4)cd
2663    
2664     PCRE knows that any matching string must contain the letter "d". If the
2665     subject string is "abyz", the lack of "d" means that matching doesn't
2666     ever start, and the callout is never reached. However, with "abyd",
2667     though the result is still no match, the callout is obeyed.
2668    
2669    
2670     THE CALLOUT INTERFACE
2671    
2672     During matching, when PCRE reaches a callout point, the external func-
2673 nigel 77 tion defined by pcre_callout is called (if it is set). This applies to
2674     both the pcre_exec() and the pcre_dfa_exec() matching functions. The
2675     only argument to the callout function is a pointer to a pcre_callout
2676     block. This structure contains the following fields:
2677 nigel 75
2678 nigel 73 int version;
2679     int callout_number;
2680     int *offset_vector;
2681     const char *subject;
2682     int subject_length;
2683     int start_match;
2684     int current_position;
2685     int capture_top;
2686     int capture_last;
2687     void *callout_data;
2688 nigel 75 int pattern_position;
2689     int next_item_length;
2690 nigel 63
2691 nigel 77 The version field is an integer containing the version number of the
2692     block format. The initial version was 0; the current version is 1. The
2693     version number will change again in future if additional fields are
2694 nigel 75 added, but the intention is never to remove any of the existing fields.
2695 nigel 63
2696 nigel 77 The callout_number field contains the number of the callout, as com-
2697     piled into the pattern (that is, the number after ?C for manual call-
2698 nigel 75 outs, and 255 for automatically generated callouts).
2699 nigel 63
2700 nigel 77 The offset_vector field is a pointer to the vector of offsets that was
2701     passed by the caller to pcre_exec() or pcre_dfa_exec(). When
2702     pcre_exec() is used, the contents can be inspected in order to extract
2703     substrings that have been matched so far, in the same way as for
2704     extracting substrings after a match has completed. For pcre_dfa_exec()
2705     this field is not useful.
2706 nigel 63
2707 nigel 75 The subject and subject_length fields contain copies of the values that
2708 nigel 73 were passed to pcre_exec().
2709 nigel 63
2710 ph10 172 The start_match field normally contains the offset within the subject
2711     at which the current match attempt started. However, if the escape
2712     sequence \K has been encountered, this value is changed to reflect the
2713     modified starting point. If the pattern is not anchored, the callout
2714     function may be called several times from the same point in the pattern
2715     for different starting points in the subject.
2716 nigel 63
2717 nigel 77 The current_position field contains the offset within the subject of
2718 nigel 73 the current match pointer.
2719 nigel 63
2720 nigel 77 When the pcre_exec() function is used, the capture_top field contains
2721     one more than the number of the highest numbered captured substring so
2722     far. If no substrings have been captured, the value of capture_top is
2723     one. This is always the case when pcre_dfa_exec() is used, because it
2724     does not support captured substrings.
2725 nigel 63
2726 nigel 77 The capture_last field contains the number of the most recently cap-
2727     tured substring. If no substrings have been captured, its value is -1.
2728     This is always the case when pcre_dfa_exec() is used.
2729 nigel 63
2730 nigel 77 The callout_data field contains a value that is passed to pcre_exec()
2731     or pcre_dfa_exec() specifically so that it can be passed back in call-
2732     outs. It is passed in the pcre_callout field of the pcre_extra data
2733     structure. If no such data was passed, the value of callout_data in a
2734     pcre_callout block is NULL. There is a description of the pcre_extra
2735 nigel 73 structure in the pcreapi documentation.
2736 nigel 63
2737 nigel 77 The pattern_position field is present from version 1 of the pcre_call-
2738 nigel 75 out structure. It contains the offset to the next item to be matched in
2739     the pattern string.
2740 nigel 63
2741 nigel 77 The next_item_length field is present from version 1 of the pcre_call-
2742 nigel 75 out structure. It contains the length of the next item to be matched in
2743 nigel 77 the pattern string. When the callout immediately precedes an alterna-
2744     tion bar, a closing parenthesis, or the end of the pattern, the length
2745     is zero. When the callout precedes an opening parenthesis, the length
2746 nigel 75 is that of the entire subpattern.
2747 nigel 73
2748 nigel 77 The pattern_position and next_item_length fields are intended to help
2749     in distinguishing between different automatic callouts, which all have
2750 nigel 75 the same callout number. However, they are set for all callouts.
2751    
2752    
2753 nigel 63 RETURN VALUES
2754    
2755 nigel 77 The external callout function returns an integer to PCRE. If the value
2756     is zero, matching proceeds as normal. If the value is greater than
2757     zero, matching fails at the current point, but the testing of other
2758     matching possibilities goes ahead, just as if a lookahead assertion had
2759     failed. If the value is less than zero, the match is abandoned, and
2760     pcre_exec() (or pcre_dfa_exec()) returns the negative value.
2761 nigel 63
2762 nigel 77 Negative values should normally be chosen from the set of
2763 nigel 73 PCRE_ERROR_xxx values. In particular, PCRE_ERROR_NOMATCH forces a stan-
2764 nigel 77 dard "no match" failure. The error number PCRE_ERROR_CALLOUT is
2765     reserved for use by callout functions; it will never be used by PCRE
2766 nigel 73 itself.
2767 nigel 63
2768    
2769 ph10 99 AUTHOR
2770 nigel 63
2771 ph10 99 Philip Hazel
2772     University Computing Service
2773     Cambridge CB2 3QH, England.
2774    
2775    
2776     REVISION
2777    
2778 ph10 172 Last updated: 29 May 2007
2779 ph10 99 Copyright (c) 1997-2007 University of Cambridge.
2780     ------------------------------------------------------------------------------
2781 ph10 259
2782    
2783 nigel 79 PCRECOMPAT(3) PCRECOMPAT(3)
2784 nigel 63
2785 nigel 79
2786 nigel 73 NAME
2787     PCRE - Perl-compatible regular expressions
2788    
2789 nigel 77
2790 nigel 75 DIFFERENCES BETWEEN PCRE AND PERL
2791 nigel 41
2792 nigel 73 This document describes the differences in the ways that PCRE and Perl
2793 nigel 93 handle regular expressions. The differences described here are mainly
2794 ph10 182 with respect to Perl 5.8, though PCRE versions 7.0 and later contain
2795     some features that are expected to be in the forthcoming Perl 5.10.
2796 nigel 41
2797 nigel 93 1. PCRE has only a subset of Perl's UTF-8 and Unicode support. Details
2798     of what it does have are given in the section on UTF-8 support in the
2799 nigel 87 main pcre page.
2800 nigel 41
2801 nigel 73 2. PCRE does not allow repeat quantifiers on lookahead assertions. Perl
2802 nigel 93 permits them, but they do not mean what you might think. For example,
2803 nigel 73 (?!a){3} does not assert that the next three characters are not "a". It
2804     just asserts that the next character is not "a" three times.
2805 nigel 41
2806 nigel 93 3. Capturing subpatterns that occur inside negative lookahead asser-
2807     tions are counted, but their entries in the offsets vector are never
2808     set. Perl sets its numerical variables from any such patterns that are
2809 nigel 73 matched before the assertion fails to match something (thereby succeed-
2810 nigel 93 ing), but only if the negative lookahead assertion contains just one
2811 nigel 73 branch.
2812 nigel 41
2813 nigel 93 4. Though binary zero characters are supported in the subject string,
2814 nigel 73 they are not allowed in a pattern string because it is passed as a nor-
2815 nigel 75 mal C string, terminated by zero. The escape sequence \0 can be used in
2816     the pattern to represent a binary zero.
2817 nigel 41
2818 nigel 93 5. The following Perl escape sequences are not supported: \l, \u, \L,
2819 nigel 75 \U, and \N. In fact these are implemented by Perl's general string-han-
2820 nigel 93 dling and are not part of its pattern matching engine. If any of these
2821 nigel 75 are encountered by PCRE, an error is generated.
2822 nigel 41
2823 nigel 93 6. The Perl escape sequences \p, \P, and \X are supported only if PCRE
2824     is built with Unicode character property support. The properties that
2825     can be tested with \p and \P are limited to the general category prop-
2826     erties such as Lu and Nd, script names such as Greek or Han, and the
2827 nigel 87 derived properties Any and L&.
2828 nigel 75
2829     7. PCRE does support the \Q...\E escape for quoting substrings. Charac-
2830 nigel 93 ters in between are treated as literals. This is slightly different
2831     from Perl in that $ and @ are also handled as literals inside the
2832     quotes. In Perl, they cause variable interpolation (but of course PCRE
2833 nigel 73 does not have variables). Note the following examples:
2834 nigel 49
2835 nigel 73 Pattern PCRE matches Perl matches
2836 nigel 41
2837 nigel 73 \Qabc$xyz\E abc$xyz abc followed by the
2838     contents of $xyz
2839     \Qabc\$xyz\E abc\$xyz abc\$xyz
2840     \Qabc\E\$\Qxyz\E abc$xyz abc$xyz
2841 nigel 41
2842 nigel 93 The \Q...\E sequence is recognized both inside and outside character
2843 nigel 73 classes.
2844 nigel 41
2845 nigel 93 8. Fairly obviously, PCRE does not support the (?{code}) and (??{code})
2846     constructions. However, there is support for recursive patterns. This
2847     is not available in Perl 5.8, but will be in Perl 5.10. Also, the PCRE
2848     "callout" feature allows an external function to be called during pat-
2849 nigel 75 tern matching. See the pcrecallout documentation for details.
2850 nigel 63
2851 nigel 93 9. Subpatterns that are called recursively or as "subroutines" are
2852     always treated as atomic groups in PCRE. This is like Python, but
2853     unlike Perl.
2854    
2855     10. There are some differences that are concerned with the settings of
2856     captured strings when part of a pattern is repeated. For example,
2857     matching "aba" against the pattern /^(a(b)?)+$/ in Perl leaves $2
2858 nigel 73 unset, but in PCRE it is set to "b".
2859 nigel 41
2860 ph10 211 11. PCRE does support Perl 5.10's backtracking verbs (*ACCEPT),
2861     (*FAIL), (*F), (*COMMIT), (*PRUNE), (*SKIP), and (*THEN), but only in
2862     the forms without an argument. PCRE does not support (*MARK). If
2863     (*ACCEPT) is within capturing parentheses, PCRE does not set that cap-
2864     ture group; this is different to Perl.
2865    
2866     12. PCRE provides some extensions to the Perl regular expression facil-
2867 nigel 93 ities. Perl 5.10 will include new features that are not in earlier
2868     versions, some of which (such as named parentheses) have been in PCRE
2869     for some time. This list is with respect to Perl 5.10:
2870 nigel 41
2871 nigel 93 (a) Although lookbehind assertions must match fixed length strings,
2872 nigel 73 each alternative branch of a lookbehind assertion can match a different
2873     length of string. Perl requires them all to have the same length.
2874 nigel 41
2875 nigel 93 (b) If PCRE_DOLLAR_ENDONLY is set and PCRE_MULTILINE is not set, the $
2876 nigel 73 meta-character matches only at the very end of the string.
2877 nigel 41
2878 nigel 73 (c) If PCRE_EXTRA is set, a backslash followed by a letter with no spe-
2879 ph10 182 cial meaning is faulted. Otherwise, like Perl, the backslash is quietly
2880     ignored. (Perl can be made to issue a warning.)
2881 nigel 41
2882 nigel 93 (d) If PCRE_UNGREEDY is set, the greediness of the repetition quanti-
2883 nigel 73 fiers is inverted, that is, by default they are not greedy, but if fol-
2884     lowed by a question mark they are.
2885 nigel 41
2886 nigel 75 (e) PCRE_ANCHORED can be used at matching time to force a pattern to be
2887     tried only at the first matching position in the subject string.
2888 nigel 41
2889 nigel 93 (f) The PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, and PCRE_NO_AUTO_CAP-
2890 nigel 73 TURE options for pcre_exec() have no Perl equivalents.
2891 nigel 41
2892 ph10 231 (g) The \R escape sequence can be restricted to match only CR, LF, or
2893     CRLF by the PCRE_BSR_ANYCRLF option.
2894 nigel 41
2895 ph10 231 (h) The callout facility is PCRE-specific.
2896 nigel 43
2897 ph10 231 (i) The partial matching facility is PCRE-specific.
2898    
2899     (j) Patterns compiled by PCRE can be saved and re-used at a later time,
2900 nigel 75 even on different hosts that have the other endianness.
2901    
2902 ph10 231 (k) The alternative matching function (pcre_dfa_exec()) matches in a
2903 nigel 77 different way and is not Perl-compatible.
2904    
2905 ph10 231 (l) PCRE recognizes some special sequences such as (*CR) at the start
2906     of a pattern that set overall options that cannot be changed within the
2907     pattern.
2908 nigel 63
2909 ph10 231
2910 ph10 99 AUTHOR
2911 nigel 63
2912 ph10 99 Philip Hazel
2913     University Computing Service
2914     Cambridge CB2 3QH, England.
2915    
2916    
2917     REVISION
2918    
2919 ph10 231 Last updated: 11 September 2007
2920 ph10 99 Copyright (c) 1997-2007 University of Cambridge.
2921     ------------------------------------------------------------------------------
2922 ph10 259
2923    
2924 nigel 79 PCREPATTERN(3) PCREPATTERN(3)
2925 nigel 63
2926 nigel 79
2927 nigel 73 NAME
2928     PCRE - Perl-compatible regular expressions
2929    
2930 nigel 77
2931 nigel 63 PCRE REGULAR EXPRESSION DETAILS
2932    
2933 ph10 208 The syntax and semantics of the regular expressions that are supported
2934     by PCRE are described in detail below. There is a quick-reference syn-
2935 ph10 345 tax summary in the pcresyntax page. PCRE tries to match Perl syntax and
2936     semantics as closely as it can. PCRE also supports some alternative
2937     regular expression syntax (which does not conflict with the Perl syn-
2938     tax) in order to provide some compatibility with regular expressions in
2939     Python, .NET, and Oniguruma.
2940 nigel 49
2941 ph10 345 Perl's regular expressions are described in its own documentation, and
2942     regular expressions in general are covered in a number of books, some
2943     of which have copious examples. Jeffrey Friedl's "Mastering Regular
2944     Expressions", published by O'Reilly, covers regular expressions in
2945     great detail. This description of PCRE's regular expressions is
2946     intended as reference material.
2947    
2948 nigel 75 The original operation of PCRE was on strings of one-byte characters.
2949     However, there is now also support for UTF-8 character strings. To use
2950     this, you must build PCRE to include UTF-8 support, and then call
2951     pcre_compile() with the PCRE_UTF8 option. How this affects pattern
2952     matching is mentioned in several places below. There is also a summary
2953     of UTF-8 features in the section on UTF-8 support in the main pcre
2954     page.
2955 nigel 41
2956 nigel 77 The remainder of this document discusses the patterns that are sup-
2957     ported by PCRE when its main matching function, pcre_exec(), is used.
2958     From release 6.0, PCRE offers a second matching function,
2959     pcre_dfa_exec(), which matches using a different algorithm that is not
2960 ph10 172 Perl-compatible. Some of the features discussed below are not available
2961     when pcre_dfa_exec() is used. The advantages and disadvantages of the
2962     alternative function, and how it differs from the normal function, are
2963     discussed in the pcrematching page.
2964 nigel 77
2965 nigel 93
2966 ph10 227 NEWLINE CONVENTIONS
2967    
2968     PCRE supports five different conventions for indicating line breaks in
2969     strings: a single CR (carriage return) character, a single LF (line-
2970     feed) character, the two-character sequence CRLF, any of the three pre-
2971     ceding, or any Unicode newline sequence. The pcreapi page has further
2972     discussion about newlines, and shows how to set the newline convention
2973     in the options arguments for the compiling and matching functions.
2974    
2975     It is also possible to specify a newline convention by starting a pat-
2976     tern string with one of the following five sequences:
2977    
2978     (*CR) carriage return
2979     (*LF) linefeed
2980     (*CRLF) carriage return, followed by linefeed
2981     (*ANYCRLF) any of the three above
2982     (*ANY) all Unicode newline sequences
2983    
2984     These override the default and the options given to pcre_compile(). For
2985     example, on a Unix system where LF is the default newline sequence, the
2986     pattern
2987    
2988     (*CR)a.b
2989    
2990     changes the convention to CR. That pattern matches "a\nb" because LF is
2991     no longer a newline. Note that these special settings, which are not
2992     Perl-compatible, are recognized only at the very start of a pattern,
2993 ph10 231 and that they must be in upper case. If more than one of them is
2994     present, the last one is used.
2995 ph10 227
2996 ph10 231 The newline convention does not affect what the \R escape sequence
2997     matches. By default, this is any Unicode newline sequence, for Perl
2998     compatibility. However, this can be changed; see the description of \R
2999 ph10 247 in the section entitled "Newline sequences" below. A change of \R set-
3000     ting can be combined with a change of newline convention.
3001 ph10 227
3002 ph10 231
3003 nigel 93 CHARACTERS AND METACHARACTERS
3004    
3005 ph10 247 A regular expression is a pattern that is matched against a subject
3006     string from left to right. Most characters stand for themselves in a
3007     pattern, and match the corresponding characters in the subject. As a
3008 nigel 73 trivial example, the pattern
3009 nigel 41
3010 nigel 73 The quick brown fox
3011 nigel 41
3012 nigel 77 matches a portion of a subject string that is identical to itself. When
3013 ph10 247 caseless matching is specified (the PCRE_CASELESS option), letters are
3014     matched independently of case. In UTF-8 mode, PCRE always understands
3015     the concept of case for characters whose values are less than 128, so
3016     caseless matching is always possible. For characters with higher val-
3017     ues, the concept of case is supported if PCRE is compiled with Unicode
3018     property support, but not otherwise. If you want to use caseless
3019     matching for characters 128 and above, you must ensure that PCRE is
3020 nigel 77 compiled with Unicode property support as well as with UTF-8 support.
3021 nigel 41
3022 ph10 247 The power of regular expressions comes from the ability to include
3023     alternatives and repetitions in the pattern. These are encoded in the
3024 nigel 77 pattern by the use of metacharacters, which do not stand for themselves
3025     but instead are interpreted in some special way.
3026    
3027 ph10 247 There are two different sets of metacharacters: those that are recog-
3028     nized anywhere in the pattern except within square brackets, and those
3029     that are recognized within square brackets. Outside square brackets,
3030 nigel 93 the metacharacters are as follows:
3031 nigel 41
3032 nigel 73 \ general escape character with several uses
3033     ^ assert start of string (or line, in multiline mode)
3034     $ assert end of string (or line, in multiline mode)
3035     . match any character except newline (by default)
3036     [ start character class definition
3037     | start of alternative branch
3038     ( start subpattern
3039     ) end subpattern
3040     ? extends the meaning of (
3041     also 0 or 1 quantifier
3042     also quantifier minimizer
3043     * 0 or more quantifier
3044     + 1 or more quantifier
3045     also "possessive quantifier"
3046     { start min/max quantifier
3047 nigel 41
3048 ph10 247 Part of a pattern that is in square brackets is called a "character
3049 nigel 75 class". In a character class the only metacharacters are:
3050 nigel 41
3051 nigel 73 \ general escape character
3052     ^ negate the class, but only if the first character
3053     - indicates character range
3054     [ POSIX character class (only if followed by POSIX
3055     syntax)
3056     ] terminates the character class
3057 nigel 41
3058 ph10 247 The following sections describe the use of each of the metacharacters.
3059 nigel 41
3060    
3061 nigel 63 BACKSLASH
3062 nigel 41
3063 nigel 73 The backslash character has several uses. Firstly, if it is followed by
3064 ph10 247 a non-alphanumeric character, it takes away any special meaning that
3065     character may have. This use of backslash as an escape character
3066 nigel 73 applies both inside and outside character classes.
3067 nigel 41
3068 ph10 247 For example, if you want to match a * character, you write \* in the
3069     pattern. This escaping action applies whether or not the following
3070     character would otherwise be interpreted as a metacharacter, so it is
3071     always safe to precede a non-alphanumeric with backslash to specify
3072     that it stands for itself. In particular, if you want to match a back-
3073 nigel 75 slash, you write \\.
3074 nigel 41
3075 ph10 247 If a pattern is compiled with the PCRE_EXTENDED option, whitespace in
3076     the pattern (other than in a character class) and characters between a
3077 nigel 91 # outside a character class and the next newline are ignored. An escap-
3078 ph10 247 ing backslash can be used to include a whitespace or # character as
3079 nigel 91 part of the pattern.
3080 nigel 41
3081 ph10 247 If you want to remove the special meaning from a sequence of charac-
3082     ters, you can do so by putting them between \Q and \E. This is differ-
3083     ent from Perl in that $ and @ are handled as literals in \Q...\E
3084     sequences in PCRE, whereas in Perl, $ and @ cause variable interpola-
3085 nigel 73 tion. Note the following examples:
3086 nigel 63
3087 nigel 73 Pattern PCRE matches Perl matches
3088 nigel 63
3089 nigel 73 \Qabc$xyz\E abc$xyz abc followed by the
3090     contents of $xyz
3091     \Qabc\$xyz\E abc\$xyz abc\$xyz
3092     \Qabc\E\$\Qxyz\E abc$xyz abc$xyz
3093 nigel 63
3094 ph10 247 The \Q...\E sequence is recognized both inside and outside character
3095 nigel 73 classes.
3096 nigel 63
3097 nigel 75 Non-printing characters
3098    
3099 nigel 73 A second use of backslash provides a way of encoding non-printing char-
3100 ph10 247 acters in patterns in a visible manner. There is no restriction on the
3101     appearance of non-printing characters, apart from the binary zero that
3102     terminates a pattern, but when a pattern is being prepared by text
3103     editing, it is usually easier to use one of the following escape
3104 nigel 73 sequences than the binary character it represents:
3105 nigel 63
3106 nigel 73 \a alarm, that is, the BEL character (hex 07)
3107     \cx "control-x", where x is any character
3108     \e escape (hex 1B)
3109     \f formfeed (hex 0C)
3110 ph10 227 \n linefeed (hex 0A)
3111 nigel 73 \r carriage return (hex 0D)
3112     \t tab (hex 09)
3113     \ddd character with octal code ddd, or backreference
3114     \xhh character with hex code hh
3115 nigel 87 \x{hhh..} character with hex code hhh..
3116 nigel 41
3117 ph10 247 The precise effect of \cx is as follows: if x is a lower case letter,
3118     it is converted to upper case. Then bit 6 of the character (hex 40) is
3119     inverted. Thus \cz becomes hex 1A, but \c{ becomes hex 3B, while \c;
3120 nigel 73 becomes hex 7B.
3121 nigel 41
3122 ph10 247 After \x, from zero to two hexadecimal digits are read (letters can be
3123     in upper or lower case). Any number of hexadecimal digits may appear
3124     between \x{ and }, but the value of the character code must be less
3125 ph10 211 than 256 in non-UTF-8 mode, and less than 2**31 in UTF-8 mode. That is,
3126 ph10 247 the maximum value in hexadecimal is 7FFFFFFF. Note that this is bigger
3127 ph10 211 than the largest Unicode code point, which is 10FFFF.
3128 nigel 41
3129 ph10 247 If characters other than hexadecimal digits appear between \x{ and },
3130 ph10 211 or if there is no terminating }, this form of escape is not recognized.
3131 ph10 247 Instead, the initial \x will be interpreted as a basic hexadecimal
3132     escape, with no following digits, giving a character whose value is
3133 ph10 211 zero.
3134    
3135 nigel 73 Characters whose value is less than 256 can be defined by either of the
3136 ph10 247 two syntaxes for \x. There is no difference in the way they are han-
3137 nigel 87 dled. For example, \xdc is exactly the same as \x{dc}.
3138 nigel 41
3139 ph10 247 After \0 up to two further octal digits are read. If there are fewer
3140     than two digits, just those that are present are used. Thus the
3141 nigel 91 sequence \0\x\07 specifies two binary zeros followed by a BEL character
3142 ph10 247 (code value 7). Make sure you supply two digits after the initial zero
3143 nigel 91 if the pattern character that follows is itself an octal digit.
3144 nigel 63
3145 nigel 73 The handling of a backslash followed by a digit other than 0 is compli-
3146     cated. Outside a character class, PCRE reads it and any following dig-
3147 ph10 247 its as a decimal number. If the number is less than 10, or if there
3148 nigel 73 have been at least that many previous capturing left parentheses in the
3149 ph10 247 expression, the entire sequence is taken as a back reference. A
3150     description of how this works is given later, following the discussion
3151 nigel 73 of parenthesized subpatterns.
3152 nigel 41
3153 ph10 247 Inside a character class, or if the decimal number is greater than 9
3154     and there have not been that many capturing subpatterns, PCRE re-reads
3155 nigel 93 up to three octal digits following the backslash, and uses them to gen-
3156 ph10 247 erate a data character. Any subsequent digits stand for themselves. In
3157     non-UTF-8 mode, the value of a character specified in octal must be
3158     less than \400. In UTF-8 mode, values up to \777 are permitted. For
3159 nigel 91 example:
3160 nigel 41
3161 nigel 73 \040 is another way of writing a space
3162     \40 is the same, provided there are fewer than 40
3163     previous capturing subpatterns
3164     \7 is always a back reference
3165     \11 might be a back reference, or another way of
3166     writing a tab
3167     \011 is always a tab
3168     \0113 is a tab followed by the character "3"
3169     \113 might be a back reference, otherwise the
3170     character with octal code 113
3171     \377 might be a back reference, otherwise
3172     the byte consisting entirely of 1 bits
3173     \81 is either a back reference, or a binary zero
3174     followed by the two characters "8" and "1"
3175 nigel 41
3176 ph10 247 Note that octal values of 100 or greater must not be introduced by a
3177 nigel 73 leading zero, because no more than three octal digits are ever read.
3178 nigel 41
3179 nigel 91 All the sequences that define a single character value can be used both
3180 ph10 247 inside and outside character classes. In addition, inside a character
3181     class, the sequence \b is interpreted as the backspace character (hex
3182     08), and the sequences \R and \X are interpreted as the characters "R"
3183     and "X", respectively. Outside a character class, these sequences have
3184 nigel 93 different meanings (see below).
3185 nigel 43
3186 nigel 93 Absolute and relative back references
3187    
3188 ph10 247 The sequence \g followed by an unsigned or a negative number, option-
3189     ally enclosed in braces, is an absolute or relative back reference. A
3190 ph10 208 named back reference can be coded as \g{name}. Back references are dis-
3191     cussed later, following the discussion of parenthesized subpatterns.
3192 nigel 93
3193 ph10 345 Absolute and relative subroutine calls
3194    
3195     For compatibility with Oniguruma, the non-Perl syntax \g followed by a
3196     name or a number enclosed either in angle brackets or single quotes, is
3197     an alternative syntax for referencing a subpattern as a "subroutine".
3198     Details are discussed later. Note that \g{...} (Perl syntax) and
3199     \g<...> (Oniguruma syntax) are not synonymous. The former is a back
3200     reference; the latter is a subroutine call.
3201    
3202 nigel 75 Generic character types
3203 nigel 41
3204 nigel 93 Another use of backslash is for specifying generic character types. The
3205     following are always recognized:
3206 nigel 75
3207 nigel 73 \d any decimal digit
3208     \D any character that is not a decimal digit
3209 ph10 182 \h any horizontal whitespace character
3210     \H any character that is not a horizontal whitespace character
3211 nigel 73 \s any whitespace character
3212     \S any character that is not a whitespace character
3213 ph10 182 \v any vertical whitespace character
3214     \V any character that is not a vertical whitespace character
3215 nigel 73 \w any "word" character
3216     \W any "non-word" character
3217 nigel 41
3218 nigel 73 Each pair of escape sequences partitions the complete set of characters
3219 ph10 345 into two disjoint sets. Any given character matches one, and only one,
3220 nigel 73 of each pair.
3221 nigel 41
3222 nigel 75 These character type sequences can appear both inside and outside char-
3223 ph10 345 acter classes. They each match one character of the appropriate type.
3224     If the current matching point is at the end of the subject string, all
3225 nigel 75 of them fail, since there is no character to match.
3226 nigel 41
3227 ph10 345 For compatibility with Perl, \s does not match the VT character (code
3228     11). This makes it different from the the POSIX "space" class. The \s
3229     characters are HT (9), LF (10), FF (12), CR (13), and space (32). If
3230 nigel 91 "use locale;" is included in a Perl script, \s may match the VT charac-
3231 ph10 182 ter. In PCRE, it never does.
3232 nigel 63
3233 ph10 345 In UTF-8 mode, characters with values greater than 128 never match \d,
3234 ph10 182 \s, or \w, and always match \D, \S, and \W. This is true even when Uni-
3235 ph10 345 code character property support is available. These sequences retain
3236 ph10 182 their original meanings from before UTF-8 support was available, mainly
3237     for efficiency reasons.
3238    
3239     The sequences \h, \H, \v, and \V are Perl 5.10 features. In contrast to
3240 ph10 345 the other sequences, these do match certain high-valued codepoints in
3241 ph10 182 UTF-8 mode. The horizontal space characters are:
3242    
3243     U+0009 Horizontal tab
3244     U+0020 Space
3245     U+00A0 Non-break space
3246     U+1680 Ogham space mark
3247     U+180E Mongolian vowel separator
3248     U+2000 En quad
3249     U+2001 Em quad
3250     U+2002 En space
3251     U+2003 Em space
3252     U+2004 Three-per-em space
3253     U+2005 Four-per-em space
3254     U+2006 Six-per-em space
3255     U+2007 Figure space
3256     U+2008 Punctuation space
3257     U+2009 Thin space
3258     U+200A Hair space
3259     U+202F Narrow no-break space
3260     U+205F Medium mathematical space
3261     U+3000 Ideographic space
3262    
3263     The vertical space characters are:
3264    
3265     U+000A Linefeed
3266     U+000B Vertical tab
3267     U+000C Formfeed
3268     U+000D Carriage return
3269     U+0085 Next line
3270     U+2028 Line separator
3271     U+2029 Paragraph separator
3272    
3273 nigel 75 A "word" character is an underscore or any character less than 256 that
3274 ph10 345 is a letter or digit. The definition of letters and digits is con-
3275     trolled by PCRE's low-valued character tables, and may vary if locale-
3276     specific matching is taking place (see "Locale support" in the pcreapi
3277     page). For example, in a French locale such as "fr_FR" in Unix-like
3278     systems, or "french" in Windows, some character codes greater than 128
3279     are used for accented letters, and these are matched by \w. The use of
3280 ph10 182 locales with Unicode is discouraged.
3281 nigel 63
3282 nigel 93 Newline sequences
3283    
3284 ph10 345 Outside a character class, by default, the escape sequence \R matches
3285 ph10 231 any Unicode newline sequence. This is a Perl 5.10 feature. In non-UTF-8
3286     mode \R is equivalent to the following:
3287 nigel 93
3288     (?>\r\n|\n|\x0b|\f|\r|\x85)
3289    
3290 ph10 345 This is an example of an "atomic group", details of which are given
3291 nigel 93 below. This particular group matches either the two-character sequence
3292 ph10 345 CR followed by LF, or one of the single characters LF (linefeed,
3293 nigel 93 U+000A), VT (vertical tab, U+000B), FF (formfeed, U+000C), CR (carriage
3294     return, U+000D), or NEL (next line, U+0085). The two-character sequence
3295     is treated as a single unit that cannot be split.
3296    
3297 ph10 345 In UTF-8 mode, two additional characters whose codepoints are greater
3298 nigel 93 than 255 are added: LS (line separator, U+2028) and PS (paragraph sepa-
3299 ph10 345 rator, U+2029). Unicode character property support is not needed for
3300 nigel 93 these characters to be recognized.
3301    
3302 ph10 231 It is possible to restrict \R to match only CR, LF, or CRLF (instead of
3303 ph10 345 the complete set of Unicode line endings) by setting the option
3304 ph10 231 PCRE_BSR_ANYCRLF either at compile time or when the pattern is matched.
3305 ph10 247 (BSR is an abbrevation for "backslash R".) This can be made the default
3306 ph10 345 when PCRE is built; if this is the case, the other behaviour can be
3307     requested via the PCRE_BSR_UNICODE option. It is also possible to
3308     specify these settings by starting a pattern string with one of the
3309 ph10 247 following sequences:
3310 ph10 231
3311     (*BSR_ANYCRLF) CR, LF, or CRLF only
3312     (*BSR_UNICODE) any Unicode newline sequence
3313    
3314     These override the default and the options given to pcre_compile(), but
3315     they can be overridden by options given to pcre_exec(). Note that these
3316     special settings, which are not Perl-compatible, are recognized only at
3317 ph10 345 the very start of a pattern, and that they must be in upper case. If
3318     more than one of them is present, the last one is used. They can be
3319     combined with a change of newline convention, for example, a pattern
3320 ph10 247 can start with:
3321 ph10 231
3322 ph10 247 (*ANY)(*BSR_ANYCRLF)
3323    
3324 nigel 93 Inside a character class, \R matches the letter "R".
3325    
3326 nigel 75 Unicode character properties
3327    
3328     When PCRE is built with Unicode character property support, three addi-
3329 ph10 345 tional escape sequences that match characters with specific properties
3330     are available. When not in UTF-8 mode, these sequences are of course
3331     limited to testing characters whose codepoints are less than 256, but
3332 ph10 185 they do work in this mode. The extra escape sequences are:
3333 nigel 75
3334 nigel 87 \p{xx} a character with the xx property
3335     \P{xx} a character without the xx property
3336     \X an extended Unicode sequence
3337 nigel 75
3338 ph10 345 The property names represented by xx above are limited to the Unicode
3339 nigel 87 script names, the general category properties, and "Any", which matches
3340     any character (including newline). Other properties such as "InMusical-
3341 ph10 345 Symbols" are not currently supported by PCRE. Note that \P{Any} does
3342 nigel 87 not match any characters, so always causes a match failure.
3343 nigel 75
3344 nigel 87 Sets of Unicode characters are defined as belonging to certain scripts.
3345 ph10 345 A character from one of these sets can be matched using a script name.
3346 nigel 87 For example:
3347 nigel 75
3348 nigel 87 \p{Greek}
3349     \P{Han}
3350    
3351 ph10 345 Those that are not part of an identified script are lumped together as
3352 nigel 87 "Common". The current list of scripts is:
3353    
3354 nigel 93 Arabic, Armenian, Balinese, Bengali, Bopomofo, Braille, Buginese,
3355 ph10 345 Buhid, Canadian_Aboriginal, Cherokee, Common, Coptic, Cuneiform,
3356 nigel 93 Cypriot, Cyrillic, Deseret, Devanagari, Ethiopic, Georgian, Glagolitic,
3357 ph10 345 Gothic, Greek, Gujarati, Gurmukhi, Han, Hangul, Hanunoo, Hebrew, Hira-
3358     gana, Inherited, Kannada, Katakana, Kharoshthi, Khmer, Lao, Latin,
3359 nigel 93 Limbu, Linear_B, Malayalam, Mongolian, Myanmar, New_Tai_Lue, Nko,
3360 ph10 345 Ogham, Old_Italic, Old_Persian, Oriya, Osmanya, Phags_Pa, Phoenician,
3361 nigel 93 Runic, Shavian, Sinhala, Syloti_Nagri, Syriac, Tagalog, Tagbanwa,
3362     Tai_Le, Tamil, Telugu, Thaana, Thai, Tibetan, Tifinagh, Ugaritic, Yi.
3363 nigel 87
3364 ph10 345 Each character has exactly one general category property, specified by
3365 nigel 87 a two-letter abbreviation. For compatibility with Perl, negation can be
3366 ph10 345 specified by including a circumflex between the opening brace and the
3367 nigel 87 property name. For example, \p{^Lu} is the same as \P{Lu}.
3368    
3369     If only one letter is specified with \p or \P, it includes all the gen-
3370 ph10 345 eral category properties that start with that letter. In this case, in
3371     the absence of negation, the curly brackets in the escape sequence are
3372 nigel 87 optional; these two examples have the same effect:
3373    
3374 nigel 75 \p{L}
3375     \pL
3376    
3377 nigel 87 The following general category property codes are supported:
3378 nigel 75
3379     C Other
3380     Cc Control
3381     Cf Format
3382     Cn Unassigned
3383     Co Private use
3384     Cs Surrogate
3385    
3386     L Letter
3387     Ll Lower case letter
3388     Lm Modifier letter
3389     Lo Other letter
3390     Lt Title case letter
3391