/[pcre]/code/trunk/doc/pcreapi.3
ViewVC logotype

Contents of /code/trunk/doc/pcreapi.3

Parent Directory Parent Directory | Revision Log Revision Log


Revision 442 - (hide annotations) (download)
Fri Sep 11 10:21:02 2009 UTC (3 years, 8 months ago) by ph10
File size: 87343 byte(s)
Added PCRE_NOTEMPTY_ATSTART to fix /g bug when \K is present.

1 nigel 79 .TH PCREAPI 3
2 nigel 63 .SH NAME
3     PCRE - Perl-compatible regular expressions
4 nigel 75 .SH "PCRE NATIVE API"
5 nigel 63 .rs
6     .sp
7     .B #include <pcre.h>
8     .PP
9     .SM
10 nigel 75 .B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP,
11 nigel 63 .ti +5n
12 nigel 75 .B const char **\fIerrptr\fP, int *\fIerroffset\fP,
13 nigel 63 .ti +5n
14 nigel 75 .B const unsigned char *\fItableptr\fP);
15 nigel 63 .PP
16 nigel 77 .B pcre *pcre_compile2(const char *\fIpattern\fP, int \fIoptions\fP,
17     .ti +5n
18     .B int *\fIerrorcodeptr\fP,
19     .ti +5n
20     .B const char **\fIerrptr\fP, int *\fIerroffset\fP,
21     .ti +5n
22     .B const unsigned char *\fItableptr\fP);
23     .PP
24 nigel 75 .B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP,
25 nigel 63 .ti +5n
26 nigel 75 .B const char **\fIerrptr\fP);
27 nigel 63 .PP
28 nigel 75 .B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
29 nigel 63 .ti +5n
30 nigel 75 .B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP,
31 nigel 63 .ti +5n
32 nigel 75 .B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP);
33 nigel 63 .PP
34 nigel 77 .B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
35     .ti +5n
36     .B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP,
37     .ti +5n
38     .B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP,
39     .ti +5n
40     .B int *\fIworkspace\fP, int \fIwscount\fP);
41     .PP
42 nigel 75 .B int pcre_copy_named_substring(const pcre *\fIcode\fP,
43 nigel 63 .ti +5n
44 nigel 75 .B const char *\fIsubject\fP, int *\fIovector\fP,
45 nigel 63 .ti +5n
46 nigel 75 .B int \fIstringcount\fP, const char *\fIstringname\fP,
47 nigel 63 .ti +5n
48 nigel 75 .B char *\fIbuffer\fP, int \fIbuffersize\fP);
49 nigel 63 .PP
50 nigel 75 .B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP,
51 nigel 63 .ti +5n
52 nigel 75 .B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP,
53 nigel 63 .ti +5n
54 nigel 75 .B int \fIbuffersize\fP);
55 nigel 63 .PP
56 nigel 75 .B int pcre_get_named_substring(const pcre *\fIcode\fP,
57 nigel 63 .ti +5n
58 nigel 75 .B const char *\fIsubject\fP, int *\fIovector\fP,
59 nigel 63 .ti +5n
60 nigel 75 .B int \fIstringcount\fP, const char *\fIstringname\fP,
61 nigel 63 .ti +5n
62 nigel 75 .B const char **\fIstringptr\fP);
63 nigel 63 .PP
64 nigel 75 .B int pcre_get_stringnumber(const pcre *\fIcode\fP,
65 nigel 63 .ti +5n
66 nigel 75 .B const char *\fIname\fP);
67 nigel 63 .PP
68 nigel 91 .B int pcre_get_stringtable_entries(const pcre *\fIcode\fP,
69     .ti +5n
70     .B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP);
71     .PP
72 nigel 75 .B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP,
73 nigel 63 .ti +5n
74 nigel 75 .B int \fIstringcount\fP, int \fIstringnumber\fP,
75 nigel 63 .ti +5n
76 nigel 75 .B const char **\fIstringptr\fP);
77 nigel 63 .PP
78 nigel 75 .B int pcre_get_substring_list(const char *\fIsubject\fP,
79 nigel 63 .ti +5n
80 nigel 75 .B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);"
81 nigel 63 .PP
82 nigel 75 .B void pcre_free_substring(const char *\fIstringptr\fP);
83 nigel 63 .PP
84 nigel 75 .B void pcre_free_substring_list(const char **\fIstringptr\fP);
85 nigel 63 .PP
86     .B const unsigned char *pcre_maketables(void);
87     .PP
88 nigel 75 .B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
89 nigel 63 .ti +5n
90 nigel 75 .B int \fIwhat\fP, void *\fIwhere\fP);
91 nigel 63 .PP
92 nigel 75 .B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int
93     .B *\fIfirstcharptr\fP);
94 nigel 63 .PP
95 nigel 77 .B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP);
96     .PP
97 nigel 75 .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);
98 nigel 63 .PP
99     .B char *pcre_version(void);
100     .PP
101     .B void *(*pcre_malloc)(size_t);
102     .PP
103     .B void (*pcre_free)(void *);
104     .PP
105 nigel 73 .B void *(*pcre_stack_malloc)(size_t);
106     .PP
107     .B void (*pcre_stack_free)(void *);
108     .PP
109 nigel 63 .B int (*pcre_callout)(pcre_callout_block *);
110 nigel 75 .
111     .
112     .SH "PCRE API OVERVIEW"
113 nigel 63 .rs
114     .sp
115 nigel 93 PCRE has its own native API, which is described in this document. There are
116     also some wrapper functions that correspond to the POSIX regular expression
117 nigel 77 API. These are described in the
118 nigel 75 .\" HREF
119     \fBpcreposix\fP
120     .\"
121 nigel 77 documentation. Both of these APIs define a set of C function calls. A C++
122     wrapper is distributed with PCRE. It is documented in the
123     .\" HREF
124     \fBpcrecpp\fP
125     .\"
126     page.
127 nigel 75 .P
128 nigel 77 The native API C function prototypes are defined in the header file
129     \fBpcre.h\fP, and on Unix systems the library itself is called \fBlibpcre\fP.
130     It can normally be accessed by adding \fB-lpcre\fP to the command for linking
131     an application that uses PCRE. The header file defines the macros PCRE_MAJOR
132     and PCRE_MINOR to contain the major and minor release numbers for the library.
133 nigel 75 Applications can use these to include support for different releases of PCRE.
134     .P
135 nigel 77 The functions \fBpcre_compile()\fP, \fBpcre_compile2()\fP, \fBpcre_study()\fP,
136     and \fBpcre_exec()\fP are used for compiling and matching regular expressions
137     in a Perl-compatible manner. A sample program that demonstrates the simplest
138 ph10 429 way of using them is provided in the file called \fIpcredemo.c\fP in the PCRE
139     source distribution. A listing of this program is given in the
140 nigel 75 .\" HREF
141 ph10 429 \fBpcredemo\fP
142     .\"
143     documentation, and the
144     .\" HREF
145 nigel 75 \fBpcresample\fP
146     .\"
147 ph10 312 documentation describes how to compile and run it.
148 nigel 75 .P
149 nigel 77 A second matching function, \fBpcre_dfa_exec()\fP, which is not
150     Perl-compatible, is also provided. This uses a different algorithm for the
151 nigel 91 matching. The alternative algorithm finds all possible matches (at a given
152 ph10 435 point in the subject), and scans the subject just once (unless there are
153     lookbehind assertions). However, this algorithm does not return captured
154     substrings. A description of the two matching algorithms and their advantages
155     and disadvantages is given in the
156 nigel 77 .\" HREF
157     \fBpcrematching\fP
158     .\"
159     documentation.
160     .P
161 nigel 75 In addition to the main compiling and matching functions, there are convenience
162 nigel 77 functions for extracting captured substrings from a subject string that is
163     matched by \fBpcre_exec()\fP. They are:
164 nigel 75 .sp
165     \fBpcre_copy_substring()\fP
166     \fBpcre_copy_named_substring()\fP
167     \fBpcre_get_substring()\fP
168     \fBpcre_get_named_substring()\fP
169     \fBpcre_get_substring_list()\fP
170     \fBpcre_get_stringnumber()\fP
171 nigel 91 \fBpcre_get_stringtable_entries()\fP
172 nigel 75 .sp
173     \fBpcre_free_substring()\fP and \fBpcre_free_substring_list()\fP are also
174 nigel 63 provided, to free the memory used for extracted strings.
175 nigel 75 .P
176     The function \fBpcre_maketables()\fP is used to build a set of character tables
177 nigel 77 in the current locale for passing to \fBpcre_compile()\fP, \fBpcre_exec()\fP,
178     or \fBpcre_dfa_exec()\fP. This is an optional facility that is provided for
179     specialist use. Most commonly, no special tables are passed, in which case
180     internal tables that are generated when PCRE is built are used.
181 nigel 75 .P
182     The function \fBpcre_fullinfo()\fP is used to find out information about a
183     compiled pattern; \fBpcre_info()\fP is an obsolete version that returns only
184 nigel 63 some of the available information, but is retained for backwards compatibility.
185 nigel 75 The function \fBpcre_version()\fP returns a pointer to a string containing the
186 nigel 63 version of PCRE and its date of release.
187 nigel 75 .P
188 nigel 77 The function \fBpcre_refcount()\fP maintains a reference count in a data block
189     containing a compiled pattern. This is provided for the benefit of
190     object-oriented applications.
191     .P
192 nigel 75 The global variables \fBpcre_malloc\fP and \fBpcre_free\fP initially contain
193     the entry points of the standard \fBmalloc()\fP and \fBfree()\fP functions,
194 nigel 63 respectively. PCRE calls the memory management functions via these variables,
195     so a calling program can replace them if it wishes to intercept the calls. This
196     should be done before calling any PCRE functions.
197 nigel 75 .P
198     The global variables \fBpcre_stack_malloc\fP and \fBpcre_stack_free\fP are also
199 nigel 73 indirections to memory management functions. These special functions are used
200     only when PCRE is compiled to use the heap for remembering data, instead of
201 nigel 91 recursive function calls, when running the \fBpcre_exec()\fP function. See the
202     .\" HREF
203     \fBpcrebuild\fP
204     .\"
205     documentation for details of how to do this. It is a non-standard way of
206     building PCRE, for use in environments that have limited stacks. Because of the
207     greater use of memory management, it runs more slowly. Separate functions are
208     provided so that special-purpose external code can be used for this case. When
209     used, these functions are always called in a stack-like manner (last obtained,
210     first freed), and always for memory blocks of the same size. There is a
211     discussion about PCRE's stack usage in the
212     .\" HREF
213     \fBpcrestack\fP
214     .\"
215     documentation.
216 nigel 75 .P
217     The global variable \fBpcre_callout\fP initially contains NULL. It can be set
218 nigel 63 by the caller to a "callout" function, which PCRE will then call at specified
219 nigel 75 points during a matching operation. Details are given in the
220     .\" HREF
221     \fBpcrecallout\fP
222     .\"
223 nigel 63 documentation.
224 nigel 75 .
225     .
226 ph10 227 .\" HTML <a name="newlines"></a>
227 nigel 91 .SH NEWLINES
228 nigel 93 .rs
229 nigel 91 .sp
230 ph10 149 PCRE supports five different conventions for indicating line breaks in
231 nigel 93 strings: a single CR (carriage return) character, a single LF (linefeed)
232 ph10 149 character, the two-character sequence CRLF, any of the three preceding, or any
233     Unicode newline sequence. The Unicode newline sequences are the three just
234     mentioned, plus the single characters VT (vertical tab, U+000B), FF (formfeed,
235     U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS
236     (paragraph separator, U+2029).
237 nigel 93 .P
238     Each of the first three conventions is used by at least one operating system as
239     its standard newline sequence. When PCRE is built, a default can be specified.
240     The default default is LF, which is the Unix standard. When PCRE is run, the
241     default can be overridden, either when a pattern is compiled, or when it is
242     matched.
243     .P
244 ph10 227 At compile time, the newline convention can be specified by the \fIoptions\fP
245     argument of \fBpcre_compile()\fP, or it can be specified by special text at the
246     start of the pattern itself; this overrides any other settings. See the
247     .\" HREF
248     \fBpcrepattern\fP
249     .\"
250     page for details of the special character sequences.
251     .P
252 nigel 91 In the PCRE documentation the word "newline" is used to mean "the character or
253 nigel 93 pair of characters that indicate a line break". The choice of newline
254     convention affects the handling of the dot, circumflex, and dollar
255     metacharacters, the handling of #-comments in /x mode, and, when CRLF is a
256     recognized line ending sequence, the match position advancement for a
257 ph10 226 non-anchored pattern. There is more detail about this in the
258     .\" HTML <a href="#execoptions">
259     .\" </a>
260     section on \fBpcre_exec()\fP options
261     .\"
262 ph10 231 below.
263     .P
264     The choice of newline convention does not affect the interpretation of
265     the \en or \er escape sequences, nor does it affect what \eR matches, which is
266     controlled in a similar way, but by separate options.
267 nigel 91 .
268     .
269 nigel 63 .SH MULTITHREADING
270     .rs
271     .sp
272     The PCRE functions can be used in multi-threading applications, with the
273 nigel 75 proviso that the memory management functions pointed to by \fBpcre_malloc\fP,
274     \fBpcre_free\fP, \fBpcre_stack_malloc\fP, and \fBpcre_stack_free\fP, and the
275     callout function pointed to by \fBpcre_callout\fP, are shared by all threads.
276     .P
277 nigel 63 The compiled form of a regular expression is not altered during matching, so
278     the same compiled pattern can safely be used by several threads at once.
279 nigel 75 .
280     .
281     .SH "SAVING PRECOMPILED PATTERNS FOR LATER USE"
282 nigel 63 .rs
283     .sp
284 nigel 75 The compiled form of a regular expression can be saved and re-used at a later
285     time, possibly by a different program, and even on a host other than the one on
286     which it was compiled. Details are given in the
287     .\" HREF
288     \fBpcreprecompile\fP
289     .\"
290 ph10 155 documentation. However, compiling a regular expression with one version of PCRE
291     for use with a different version is not guaranteed to work and may cause
292     crashes.
293 nigel 75 .
294     .
295     .SH "CHECKING BUILD-TIME OPTIONS"
296     .rs
297     .sp
298     .B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP);
299 nigel 63 .PP
300 nigel 75 The function \fBpcre_config()\fP makes it possible for a PCRE client to
301 nigel 63 discover which optional features have been compiled into the PCRE library. The
302     .\" HREF
303 nigel 75 \fBpcrebuild\fP
304 nigel 63 .\"
305     documentation has more details about these optional features.
306 nigel 75 .P
307     The first argument for \fBpcre_config()\fP is an integer, specifying which
308 nigel 63 information is required; the second argument is a pointer to a variable into
309     which the information is placed. The following information is available:
310 nigel 75 .sp
311 nigel 63 PCRE_CONFIG_UTF8
312 nigel 75 .sp
313 nigel 63 The output is an integer that is set to one if UTF-8 support is available;
314     otherwise it is set to zero.
315 nigel 75 .sp
316     PCRE_CONFIG_UNICODE_PROPERTIES
317     .sp
318     The output is an integer that is set to one if support for Unicode character
319     properties is available; otherwise it is set to zero.
320     .sp
321 nigel 63 PCRE_CONFIG_NEWLINE
322 nigel 75 .sp
323 nigel 91 The output is an integer whose value specifies the default character sequence
324 nigel 93 that is recognized as meaning "newline". The four values that are supported
325 ph10 392 are: 10 for LF, 13 for CR, 3338 for CRLF, -2 for ANYCRLF, and -1 for ANY.
326 ph10 391 Though they are derived from ASCII, the same values are returned in EBCDIC
327     environments. The default should normally correspond to the standard sequence
328     for your operating system.
329 nigel 75 .sp
330 ph10 231 PCRE_CONFIG_BSR
331     .sp
332     The output is an integer whose value indicates what character sequences the \eR
333     escape sequence matches by default. A value of 0 means that \eR matches any
334     Unicode line ending sequence; a value of 1 means that \eR matches only CR, LF,
335     or CRLF. The default can be overridden when a pattern is compiled or matched.
336     .sp
337 nigel 63 PCRE_CONFIG_LINK_SIZE
338 nigel 75 .sp
339 nigel 63 The output is an integer that contains the number of bytes used for internal
340     linkage in compiled regular expressions. The value is 2, 3, or 4. Larger values
341     allow larger regular expressions to be compiled, at the expense of slower
342     matching. The default value of 2 is sufficient for all but the most massive
343     patterns, since it allows the compiled pattern to be up to 64K in size.
344 nigel 75 .sp
345 nigel 63 PCRE_CONFIG_POSIX_MALLOC_THRESHOLD
346 nigel 75 .sp
347 nigel 63 The output is an integer that contains the threshold above which the POSIX
348 nigel 75 interface uses \fBmalloc()\fP for output vectors. Further details are given in
349     the
350     .\" HREF
351     \fBpcreposix\fP
352     .\"
353     documentation.
354     .sp
355 nigel 63 PCRE_CONFIG_MATCH_LIMIT
356 nigel 75 .sp
357 ph10 376 The output is a long integer that gives the default limit for the number of
358 nigel 75 internal matching function calls in a \fBpcre_exec()\fP execution. Further
359     details are given with \fBpcre_exec()\fP below.
360     .sp
361 nigel 87 PCRE_CONFIG_MATCH_LIMIT_RECURSION
362     .sp
363 ph10 376 The output is a long integer that gives the default limit for the depth of
364 nigel 87 recursion when calling the internal matching function in a \fBpcre_exec()\fP
365     execution. Further details are given with \fBpcre_exec()\fP below.
366     .sp
367 nigel 73 PCRE_CONFIG_STACKRECURSE
368 nigel 75 .sp
369 nigel 77 The output is an integer that is set to one if internal recursion when running
370     \fBpcre_exec()\fP is implemented by recursive function calls that use the stack
371     to remember their state. This is the usual way that PCRE is compiled. The
372     output is zero if PCRE was compiled to use blocks of data on the heap instead
373     of recursive function calls. In this case, \fBpcre_stack_malloc\fP and
374     \fBpcre_stack_free\fP are called to manage memory blocks on the heap, thus
375     avoiding the use of the stack.
376 nigel 75 .
377     .
378     .SH "COMPILING A PATTERN"
379 nigel 63 .rs
380     .sp
381 nigel 75 .B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP,
382 nigel 63 .ti +5n
383 nigel 75 .B const char **\fIerrptr\fP, int *\fIerroffset\fP,
384 nigel 63 .ti +5n
385 nigel 75 .B const unsigned char *\fItableptr\fP);
386 nigel 77 .sp
387     .B pcre *pcre_compile2(const char *\fIpattern\fP, int \fIoptions\fP,
388     .ti +5n
389     .B int *\fIerrorcodeptr\fP,
390     .ti +5n
391     .B const char **\fIerrptr\fP, int *\fIerroffset\fP,
392     .ti +5n
393     .B const unsigned char *\fItableptr\fP);
394 nigel 75 .P
395 nigel 77 Either of the functions \fBpcre_compile()\fP or \fBpcre_compile2()\fP can be
396     called to compile a pattern into an internal form. The only difference between
397     the two interfaces is that \fBpcre_compile2()\fP has an additional argument,
398     \fIerrorcodeptr\fP, via which a numerical error code can be returned.
399 nigel 75 .P
400 nigel 77 The pattern is a C string terminated by a binary zero, and is passed in the
401     \fIpattern\fP argument. A pointer to a single block of memory that is obtained
402     via \fBpcre_malloc\fP is returned. This contains the compiled code and related
403     data. The \fBpcre\fP type is defined for the returned block; this is a typedef
404     for a structure whose contents are not externally defined. It is up to the
405 nigel 91 caller to free the memory (via \fBpcre_free\fP) when it is no longer required.
406 nigel 77 .P
407 nigel 63 Although the compiled code of a PCRE regex is relocatable, that is, it does not
408 nigel 75 depend on memory location, the complete \fBpcre\fP data block is not
409     fully relocatable, because it may contain a copy of the \fItableptr\fP
410     argument, which is an address (see below).
411     .P
412 nigel 93 The \fIoptions\fP argument contains various bit settings that affect the
413 nigel 75 compilation. It should be zero if no options are required. The available
414 ph10 412 options are described below. Some of them (in particular, those that are
415     compatible with Perl, but also some others) can also be set and unset from
416     within the pattern (see the detailed description in the
417 nigel 75 .\" HREF
418     \fBpcrepattern\fP
419     .\"
420 ph10 412 documentation). For those options that can be different in different parts of
421     the pattern, the contents of the \fIoptions\fP argument specifies their initial
422     settings at the start of compilation and execution. The PCRE_ANCHORED and
423     PCRE_NEWLINE_\fIxxx\fP options can be set at the time of matching as well as at
424     compile time.
425 nigel 75 .P
426     If \fIerrptr\fP is NULL, \fBpcre_compile()\fP returns NULL immediately.
427     Otherwise, if compilation of a pattern fails, \fBpcre_compile()\fP returns
428     NULL, and sets the variable pointed to by \fIerrptr\fP to point to a textual
429 nigel 87 error message. This is a static string that is part of the library. You must
430     not try to free it. The offset from the start of the pattern to the character
431     where the error was discovered is placed in the variable pointed to by
432 nigel 75 \fIerroffset\fP, which must not be NULL. If it is, an immediate error is given.
433     .P
434 nigel 77 If \fBpcre_compile2()\fP is used instead of \fBpcre_compile()\fP, and the
435     \fIerrorcodeptr\fP argument is not NULL, a non-zero error code number is
436     returned via this argument in the event of an error. This is in addition to the
437     textual error message. Error codes and messages are listed below.
438     .P
439 nigel 75 If the final argument, \fItableptr\fP, is NULL, PCRE uses a default set of
440     character tables that are built when PCRE is compiled, using the default C
441     locale. Otherwise, \fItableptr\fP must be an address that is the result of a
442     call to \fBpcre_maketables()\fP. This value is stored with the compiled
443     pattern, and used again by \fBpcre_exec()\fP, unless another table pointer is
444     passed to it. For more discussion, see the section on locale support below.
445     .P
446     This code fragment shows a typical straightforward call to \fBpcre_compile()\fP:
447     .sp
448 nigel 63 pcre *re;
449     const char *error;
450     int erroffset;
451     re = pcre_compile(
452     "^A.*Z", /* the pattern */
453     0, /* default options */
454     &error, /* for error message */
455     &erroffset, /* for error offset */
456     NULL); /* use default character tables */
457 nigel 75 .sp
458     The following names for option bits are defined in the \fBpcre.h\fP header
459     file:
460     .sp
461 nigel 63 PCRE_ANCHORED
462 nigel 75 .sp
463 nigel 63 If this bit is set, the pattern is forced to be "anchored", that is, it is
464 nigel 75 constrained to match only at the first matching point in the string that is
465 nigel 63 being searched (the "subject string"). This effect can also be achieved by
466     appropriate constructs in the pattern itself, which is the only way to do it in
467     Perl.
468 nigel 75 .sp
469     PCRE_AUTO_CALLOUT
470     .sp
471     If this bit is set, \fBpcre_compile()\fP automatically inserts callout items,
472     all with number 255, before each pattern item. For discussion of the callout
473     facility, see the
474     .\" HREF
475     \fBpcrecallout\fP
476     .\"
477     documentation.
478     .sp
479 ph10 231 PCRE_BSR_ANYCRLF
480     PCRE_BSR_UNICODE
481     .sp
482     These options (which are mutually exclusive) control what the \eR escape
483     sequence matches. The choice is either to match only CR, LF, or CRLF, or to
484     match any Unicode newline sequence. The default is specified when PCRE is
485     built. It can be overridden from within the pattern, or by setting an option
486     when a compiled pattern is matched.
487     .sp
488 nigel 63 PCRE_CASELESS
489 nigel 75 .sp
490 nigel 63 If this bit is set, letters in the pattern match both upper and lower case
491     letters. It is equivalent to Perl's /i option, and it can be changed within a
492 nigel 77 pattern by a (?i) option setting. In UTF-8 mode, PCRE always understands the
493     concept of case for characters whose values are less than 128, so caseless
494     matching is always possible. For characters with higher values, the concept of
495     case is supported if PCRE is compiled with Unicode property support, but not
496     otherwise. If you want to use caseless matching for characters 128 and above,
497     you must ensure that PCRE is compiled with Unicode property support as well as
498     with UTF-8 support.
499 nigel 75 .sp
500 nigel 63 PCRE_DOLLAR_ENDONLY
501 nigel 75 .sp
502 nigel 63 If this bit is set, a dollar metacharacter in the pattern matches only at the
503     end of the subject string. Without this option, a dollar also matches
504 nigel 91 immediately before a newline at the end of the string (but not before any other
505     newlines). The PCRE_DOLLAR_ENDONLY option is ignored if PCRE_MULTILINE is set.
506     There is no equivalent to this option in Perl, and no way to set it within a
507     pattern.
508 nigel 75 .sp
509 nigel 63 PCRE_DOTALL
510 nigel 75 .sp
511 nigel 63 If this bit is set, a dot metacharater in the pattern matches all characters,
512 nigel 91 including those that indicate newline. Without it, a dot does not match when
513     the current position is at a newline. This option is equivalent to Perl's /s
514     option, and it can be changed within a pattern by a (?s) option setting. A
515 nigel 93 negative class such as [^a] always matches newline characters, independent of
516     the setting of this option.
517 nigel 75 .sp
518 nigel 91 PCRE_DUPNAMES
519     .sp
520     If this bit is set, names used to identify capturing subpatterns need not be
521     unique. This can be helpful for certain types of pattern when it is known that
522     only one instance of the named subpattern can ever be matched. There are more
523     details of named subpatterns below; see also the
524     .\" HREF
525     \fBpcrepattern\fP
526     .\"
527     documentation.
528     .sp
529 nigel 63 PCRE_EXTENDED
530 nigel 75 .sp
531 nigel 63 If this bit is set, whitespace data characters in the pattern are totally
532     ignored except when escaped or inside a character class. Whitespace does not
533     include the VT character (code 11). In addition, characters between an
534 nigel 91 unescaped # outside a character class and the next newline, inclusive, are also
535     ignored. This is equivalent to Perl's /x option, and it can be changed within a
536     pattern by a (?x) option setting.
537 nigel 75 .P
538 nigel 63 This option makes it possible to include comments inside complicated patterns.
539     Note, however, that this applies only to data characters. Whitespace characters
540     may never appear within special character sequences in a pattern, for example
541     within the sequence (?( which introduces a conditional subpattern.
542 nigel 75 .sp
543 nigel 63 PCRE_EXTRA
544 nigel 75 .sp
545 nigel 63 This option was invented in order to turn on additional functionality of PCRE
546     that is incompatible with Perl, but it is currently of very little use. When
547     set, any backslash in a pattern that is followed by a letter that has no
548     special meaning causes an error, thus reserving these combinations for future
549     expansion. By default, as in Perl, a backslash followed by a letter with no
550 nigel 91 special meaning is treated as a literal. (Perl can, however, be persuaded to
551     give a warning for this.) There are at present no other features controlled by
552     this option. It can also be set by a (?X) option setting within a pattern.
553 nigel 75 .sp
554 nigel 77 PCRE_FIRSTLINE
555     .sp
556     If this option is set, an unanchored pattern is required to match before or at
557 nigel 91 the first newline in the subject string, though the matched text may continue
558     over the newline.
559 nigel 77 .sp
560 ph10 336 PCRE_JAVASCRIPT_COMPAT
561     .sp
562 ph10 345 If this option is set, PCRE's behaviour is changed in some ways so that it is
563 ph10 336 compatible with JavaScript rather than Perl. The changes are as follows:
564     .P
565     (1) A lone closing square bracket in a pattern causes a compile-time error,
566     because this is illegal in JavaScript (by default it is treated as a data
567     character). Thus, the pattern AB]CD becomes illegal when this option is set.
568     .P
569     (2) At run time, a back reference to an unset subpattern group matches an empty
570 ph10 345 string (by default this causes the current matching alternative to fail). A
571     pattern such as (\e1)(a) succeeds when this option is set (assuming it can find
572     an "a" in the subject), whereas it fails by default, for Perl compatibility.
573 ph10 336 .sp
574 nigel 63 PCRE_MULTILINE
575 nigel 75 .sp
576     By default, PCRE treats the subject string as consisting of a single line of
577     characters (even if it actually contains newlines). The "start of line"
578 nigel 63 metacharacter (^) matches only at the start of the string, while the "end of
579     line" metacharacter ($) matches only at the end of the string, or before a
580     terminating newline (unless PCRE_DOLLAR_ENDONLY is set). This is the same as
581     Perl.
582 nigel 75 .P
583 nigel 63 When PCRE_MULTILINE it is set, the "start of line" and "end of line" constructs
584 nigel 91 match immediately following or immediately before internal newlines in the
585     subject string, respectively, as well as at the very start and end. This is
586     equivalent to Perl's /m option, and it can be changed within a pattern by a
587     (?m) option setting. If there are no newlines in a subject string, or no
588 nigel 63 occurrences of ^ or $ in a pattern, setting PCRE_MULTILINE has no effect.
589 nigel 75 .sp
590 nigel 91 PCRE_NEWLINE_CR
591     PCRE_NEWLINE_LF
592     PCRE_NEWLINE_CRLF
593 ph10 150 PCRE_NEWLINE_ANYCRLF
594 nigel 93 PCRE_NEWLINE_ANY
595 nigel 91 .sp
596     These options override the default newline definition that was chosen when PCRE
597     was built. Setting the first or the second specifies that a newline is
598 nigel 93 indicated by a single character (CR or LF, respectively). Setting
599     PCRE_NEWLINE_CRLF specifies that a newline is indicated by the two-character
600 ph10 149 CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies that any of the three
601     preceding sequences should be recognized. Setting PCRE_NEWLINE_ANY specifies
602     that any Unicode newline sequence should be recognized. The Unicode newline
603     sequences are the three just mentioned, plus the single characters VT (vertical
604     tab, U+000B), FF (formfeed, U+000C), NEL (next line, U+0085), LS (line
605     separator, U+2028), and PS (paragraph separator, U+2029). The last two are
606     recognized only in UTF-8 mode.
607 nigel 91 .P
608 nigel 93 The newline setting in the options word uses three bits that are treated
609 ph10 149 as a number, giving eight possibilities. Currently only six are used (default
610     plus the five values above). This means that if you set more than one newline
611 nigel 93 option, the combination may or may not be sensible. For example,
612     PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to PCRE_NEWLINE_CRLF, but
613 ph10 149 other combinations may yield unused numbers and cause an error.
614 nigel 93 .P
615     The only time that a line break is specially recognized when compiling a
616     pattern is if PCRE_EXTENDED is set, and an unescaped # outside a character
617     class is encountered. This indicates a comment that lasts until after the next
618     line break sequence. In other circumstances, line break sequences are treated
619     as literal data, except that in PCRE_EXTENDED mode, both CR and LF are treated
620     as whitespace characters and are therefore ignored.
621     .P
622     The newline option that is set at compile time becomes the default that is used
623     for \fBpcre_exec()\fP and \fBpcre_dfa_exec()\fP, but it can be overridden.
624 nigel 91 .sp
625 nigel 63 PCRE_NO_AUTO_CAPTURE
626 nigel 75 .sp
627 nigel 63 If this option is set, it disables the use of numbered capturing parentheses in
628     the pattern. Any opening parenthesis that is not followed by ? behaves as if it
629     were followed by ?: but named parentheses can still be used for capturing (and
630     they acquire numbers in the usual way). There is no equivalent of this option
631     in Perl.
632 nigel 75 .sp
633 nigel 63 PCRE_UNGREEDY
634 nigel 75 .sp
635 nigel 63 This option inverts the "greediness" of the quantifiers so that they are not
636     greedy by default, but become greedy if followed by "?". It is not compatible
637     with Perl. It can also be set by a (?U) option setting within the pattern.
638 nigel 75 .sp
639 nigel 63 PCRE_UTF8
640 nigel 75 .sp
641 nigel 63 This option causes PCRE to regard both the pattern and the subject as strings
642     of UTF-8 characters instead of single-byte character strings. However, it is
643 nigel 75 available only when PCRE is built to include UTF-8 support. If not, the use
644 nigel 63 of this option provokes an error. Details of how this option changes the
645     behaviour of PCRE are given in the
646     .\" HTML <a href="pcre.html#utf8support">
647     .\" </a>
648     section on UTF-8 support
649     .\"
650     in the main
651     .\" HREF
652 nigel 75 \fBpcre\fP
653 nigel 63 .\"
654     page.
655 nigel 75 .sp
656 nigel 71 PCRE_NO_UTF8_CHECK
657 nigel 75 .sp
658 nigel 71 When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is
659 ph10 211 automatically checked. There is a discussion about the
660     .\" HTML <a href="pcre.html#utf8strings">
661     .\" </a>
662     validity of UTF-8 strings
663     .\"
664     in the main
665     .\" HREF
666     \fBpcre\fP
667     .\"
668     page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_compile()\fP
669     returns an error. If you already know that your pattern is valid, and you want
670     to skip this check for performance reasons, you can set the PCRE_NO_UTF8_CHECK
671     option. When it is set, the effect of passing an invalid UTF-8 string as a
672     pattern is undefined. It may cause your program to crash. Note that this option
673     can also be passed to \fBpcre_exec()\fP and \fBpcre_dfa_exec()\fP, to suppress
674     the UTF-8 validity checking of subject strings.
675 nigel 75 .
676     .
677 nigel 77 .SH "COMPILATION ERROR CODES"
678     .rs
679     .sp
680     The following table lists the error codes than may be returned by
681     \fBpcre_compile2()\fP, along with the error messages that may be returned by
682 nigel 93 both compiling functions. As PCRE has developed, some error codes have fallen
683     out of use. To avoid confusion, they have not been re-used.
684 nigel 77 .sp
685     0 no error
686     1 \e at end of pattern
687     2 \ec at end of pattern
688     3 unrecognized character follows \e
689     4 numbers out of order in {} quantifier
690     5 number too big in {} quantifier
691     6 missing terminating ] for character class
692     7 invalid escape sequence in character class
693     8 range out of order in character class
694     9 nothing to repeat
695 nigel 93 10 [this code is not in use]
696 nigel 77 11 internal error: unexpected repeat
697 ph10 290 12 unrecognized character after (? or (?-
698 nigel 77 13 POSIX named classes are supported only within a class
699     14 missing )
700     15 reference to non-existent subpattern
701     16 erroffset passed as NULL
702     17 unknown option bit(s) set
703     18 missing ) after comment
704 nigel 93 19 [this code is not in use]
705 ph10 290 20 regular expression is too large
706 nigel 77 21 failed to get memory
707     22 unmatched parentheses
708     23 internal error: code overflow
709     24 unrecognized character after (?<
710     25 lookbehind assertion is not fixed length
711 nigel 91 26 malformed number or name after (?(
712 nigel 77 27 conditional group contains more than two branches
713     28 assertion expected after (?(
714 ph10 181 29 (?R or (?[+-]digits must be followed by )
715 nigel 77 30 unknown POSIX class name
716     31 POSIX collating elements are not supported
717     32 this version of PCRE is not compiled with PCRE_UTF8 support
718 nigel 93 33 [this code is not in use]
719 nigel 77 34 character value in \ex{...} sequence is too large
720     35 invalid condition (?(0)
721     36 \eC not allowed in lookbehind assertion
722     37 PCRE does not support \eL, \el, \eN, \eU, or \eu
723     38 number after (?C is > 255
724     39 closing ) for (?C expected
725     40 recursive call could loop indefinitely
726     41 unrecognized character after (?P
727 nigel 93 42 syntax error in subpattern name (missing terminator)
728 nigel 91 43 two named subpatterns have the same name
729 nigel 77 44 invalid UTF-8 string
730     45 support for \eP, \ep, and \eX has not been compiled
731     46 malformed \eP or \ep sequence
732     47 unknown property name after \eP or \ep
733 nigel 91 48 subpattern name is too long (maximum 32 characters)
734 ph10 290 49 too many named subpatterns (maximum 10000)
735 ph10 202 50 [this code is not in use]
736 nigel 91 51 octal value is greater than \e377 (not in UTF-8 mode)
737 nigel 93 52 internal error: overran compiling workspace
738     53 internal error: previously-checked referenced subpattern not found
739     54 DEFINE group contains more than one branch
740     55 repeating a DEFINE group is not allowed
741 ph10 231 56 inconsistent NEWLINE options
742 ph10 345 57 \eg is not followed by a braced, angle-bracketed, or quoted
743     name/number or by a plain number
744 ph10 336 58 a numbered reference must not be zero
745 ph10 290 59 (*VERB) with an argument is not supported
746     60 (*VERB) not recognized
747     61 number is too big
748     62 subpattern name expected
749 ph10 292 63 digit expected after (?+
750 ph10 336 64 ] is an invalid data character in JavaScript compatibility mode
751 ph10 290 .sp
752 ph10 292 The numbers 32 and 10000 in errors 48 and 49 are defaults; different values may
753 ph10 290 be used if the limits were changed when PCRE was built.
754 nigel 77 .
755     .
756 nigel 75 .SH "STUDYING A PATTERN"
757 nigel 63 .rs
758     .sp
759 nigel 77 .B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP
760 nigel 63 .ti +5n
761 nigel 75 .B const char **\fIerrptr\fP);
762 nigel 63 .PP
763 nigel 75 If a compiled pattern is going to be used several times, it is worth spending
764     more time analyzing it in order to speed up the time taken for matching. The
765     function \fBpcre_study()\fP takes a pointer to a compiled pattern as its first
766     argument. If studying the pattern produces additional information that will
767     help speed up matching, \fBpcre_study()\fP returns a pointer to a
768     \fBpcre_extra\fP block, in which the \fIstudy_data\fP field points to the
769     results of the study.
770     .P
771     The returned value from \fBpcre_study()\fP can be passed directly to
772     \fBpcre_exec()\fP. However, a \fBpcre_extra\fP block also contains other
773 nigel 63 fields that can be set by the caller before the block is passed; these are
774 nigel 75 described
775     .\" HTML <a href="#extradata">
776     .\" </a>
777     below
778     .\"
779     in the section on matching a pattern.
780     .P
781 nigel 77 If studying the pattern does not produce any additional information
782 nigel 75 \fBpcre_study()\fP returns NULL. In that circumstance, if the calling program
783     wants to pass any of the other fields to \fBpcre_exec()\fP, it must set up its
784     own \fBpcre_extra\fP block.
785     .P
786     The second argument of \fBpcre_study()\fP contains option bits. At present, no
787     options are defined, and this argument should always be zero.
788     .P
789     The third argument for \fBpcre_study()\fP is a pointer for an error message. If
790 nigel 63 studying succeeds (even if no data is returned), the variable it points to is
791 nigel 87 set to NULL. Otherwise it is set to point to a textual error message. This is a
792     static string that is part of the library. You must not try to free it. You
793     should test the error pointer for NULL after calling \fBpcre_study()\fP, to be
794     sure that it has run successfully.
795 nigel 75 .P
796     This is a typical call to \fBpcre_study\fP():
797     .sp
798 nigel 63 pcre_extra *pe;
799     pe = pcre_study(
800     re, /* result of pcre_compile() */
801     0, /* no options exist */
802     &error); /* set to NULL or points to a message */
803 nigel 75 .sp
804 nigel 63 At present, studying a pattern is useful only for non-anchored patterns that do
805     not have a single fixed starting character. A bitmap of possible starting
806 nigel 75 bytes is created.
807     .
808     .
809 nigel 63 .\" HTML <a name="localesupport"></a>
810 nigel 75 .SH "LOCALE SUPPORT"
811 nigel 63 .rs
812     .sp
813 ph10 139 PCRE handles caseless matching, and determines whether characters are letters,
814 nigel 75 digits, or whatever, by reference to a set of tables, indexed by character
815 nigel 77 value. When running in UTF-8 mode, this applies only to characters with codes
816 nigel 75 less than 128. Higher-valued codes never match escapes such as \ew or \ed, but
817     can be tested with \ep if PCRE is built with Unicode character property
818 ph10 142 support. The use of locales with Unicode is discouraged. If you are handling
819     characters with codes greater than 128, you should either use UTF-8 and
820 ph10 139 Unicode, or use locales, but not try to mix the two.
821 nigel 75 .P
822 ph10 139 PCRE contains an internal set of tables that are used when the final argument
823     of \fBpcre_compile()\fP is NULL. These are sufficient for many applications.
824 ph10 142 Normally, the internal tables recognize only ASCII characters. However, when
825 ph10 139 PCRE is built, it is possible to cause the internal tables to be rebuilt in the
826     default "C" locale of the local system, which may cause them to be different.
827 nigel 75 .P
828 ph10 139 The internal tables can always be overridden by tables supplied by the
829     application that calls PCRE. These may be created in a different locale from
830     the default. As more and more applications change to using Unicode, the need
831     for this locale support is expected to die away.
832     .P
833 nigel 75 External tables are built by calling the \fBpcre_maketables()\fP function,
834     which has no arguments, in the relevant locale. The result can then be passed
835     to \fBpcre_compile()\fP or \fBpcre_exec()\fP as often as necessary. For
836     example, to build and use tables that are appropriate for the French locale
837     (where accented characters with values greater than 128 are treated as letters),
838     the following code could be used:
839     .sp
840     setlocale(LC_CTYPE, "fr_FR");
841 nigel 63 tables = pcre_maketables();
842     re = pcre_compile(..., tables);
843 nigel 75 .sp
844 ph10 142 The locale name "fr_FR" is used on Linux and other Unix-like systems; if you
845 ph10 139 are using Windows, the name for the French locale is "french".
846     .P
847 nigel 75 When \fBpcre_maketables()\fP runs, the tables are built in memory that is
848     obtained via \fBpcre_malloc\fP. It is the caller's responsibility to ensure
849     that the memory containing the tables remains available for as long as it is
850     needed.
851     .P
852     The pointer that is passed to \fBpcre_compile()\fP is saved with the compiled
853     pattern, and the same tables are used via this pointer by \fBpcre_study()\fP
854     and normally also by \fBpcre_exec()\fP. Thus, by default, for any single
855     pattern, compilation, studying and matching all happen in the same locale, but
856     different patterns can be compiled in different locales.
857     .P
858     It is possible to pass a table pointer or NULL (indicating the use of the
859     internal tables) to \fBpcre_exec()\fP. Although not intended for this purpose,
860     this facility could be used to match a pattern in a different locale from the
861     one in which it was compiled. Passing table pointers at run time is discussed
862     below in the section on matching a pattern.
863     .
864     .
865     .SH "INFORMATION ABOUT A PATTERN"
866 nigel 63 .rs
867     .sp
868 nigel 75 .B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
869 nigel 63 .ti +5n
870 nigel 75 .B int \fIwhat\fP, void *\fIwhere\fP);
871 nigel 63 .PP
872 nigel 75 The \fBpcre_fullinfo()\fP function returns information about a compiled
873     pattern. It replaces the obsolete \fBpcre_info()\fP function, which is
874 nigel 63 nevertheless retained for backwards compability (and is documented below).
875 nigel 75 .P
876     The first argument for \fBpcre_fullinfo()\fP is a pointer to the compiled
877     pattern. The second argument is the result of \fBpcre_study()\fP, or NULL if
878 nigel 63 the pattern was not studied. The third argument specifies which piece of
879     information is required, and the fourth argument is a pointer to a variable
880     to receive the data. The yield of the function is zero for success, or one of
881     the following negative numbers:
882 nigel 75 .sp
883     PCRE_ERROR_NULL the argument \fIcode\fP was NULL
884     the argument \fIwhere\fP was NULL
885 nigel 63 PCRE_ERROR_BADMAGIC the "magic number" was not found
886 nigel 75 PCRE_ERROR_BADOPTION the value of \fIwhat\fP was invalid
887     .sp
888     The "magic number" is placed at the start of each compiled pattern as an simple
889     check against passing an arbitrary memory pointer. Here is a typical call of
890     \fBpcre_fullinfo()\fP, to obtain the length of the compiled pattern:
891     .sp
892 nigel 63 int rc;
893 nigel 91 size_t length;
894 nigel 63 rc = pcre_fullinfo(
895     re, /* result of pcre_compile() */
896     pe, /* result of pcre_study(), or NULL */
897     PCRE_INFO_SIZE, /* what is required */
898     &length); /* where to put the data */
899 nigel 75 .sp
900     The possible values for the third argument are defined in \fBpcre.h\fP, and are
901 nigel 63 as follows:
902 nigel 75 .sp
903 nigel 63 PCRE_INFO_BACKREFMAX
904 nigel 75 .sp
905 nigel 63 Return the number of the highest back reference in the pattern. The fourth
906 nigel 75 argument should point to an \fBint\fP variable. Zero is returned if there are
907 nigel 63 no back references.
908 nigel 75 .sp
909 nigel 63 PCRE_INFO_CAPTURECOUNT
910 nigel 75 .sp
911 nigel 63 Return the number of capturing subpatterns in the pattern. The fourth argument
912 nigel 75 should point to an \fBint\fP variable.
913     .sp
914 nigel 77 PCRE_INFO_DEFAULT_TABLES
915 nigel 75 .sp
916     Return a pointer to the internal default character tables within PCRE. The
917     fourth argument should point to an \fBunsigned char *\fP variable. This
918     information call is provided for internal use by the \fBpcre_study()\fP
919     function. External callers can cause PCRE to use its internal tables by passing
920     a NULL table pointer.
921     .sp
922 nigel 63 PCRE_INFO_FIRSTBYTE
923 nigel 75 .sp
924 nigel 63 Return information about the first byte of any matched string, for a
925 nigel 91 non-anchored pattern. The fourth argument should point to an \fBint\fP
926     variable. (This option used to be called PCRE_INFO_FIRSTCHAR; the old name is
927     still recognized for backwards compatibility.)
928 nigel 75 .P
929     If there is a fixed first byte, for example, from a pattern such as
930 nigel 93 (cat|cow|coyote), its value is returned. Otherwise, if either
931 nigel 75 .sp
932 nigel 63 (a) the pattern was compiled with the PCRE_MULTILINE option, and every branch
933     starts with "^", or
934 nigel 75 .sp
935 nigel 63 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not set
936     (if it were set, the pattern would be anchored),
937 nigel 75 .sp
938 nigel 63 -1 is returned, indicating that the pattern matches only at the start of a
939     subject string or after any newline within the string. Otherwise -2 is
940     returned. For anchored patterns, -2 is returned.
941 nigel 75 .sp
942 nigel 63 PCRE_INFO_FIRSTTABLE
943 nigel 75 .sp
944 nigel 63 If the pattern was studied, and this resulted in the construction of a 256-bit
945     table indicating a fixed set of bytes for the first byte in any matching
946     string, a pointer to the table is returned. Otherwise NULL is returned. The
947 nigel 75 fourth argument should point to an \fBunsigned char *\fP variable.
948     .sp
949 ph10 226 PCRE_INFO_HASCRORLF
950     .sp
951 ph10 227 Return 1 if the pattern contains any explicit matches for CR or LF characters,
952 ph10 243 otherwise 0. The fourth argument should point to an \fBint\fP variable. An
953 ph10 231 explicit match is either a literal CR or LF character, or \er or \en.
954 ph10 226 .sp
955 ph10 169 PCRE_INFO_JCHANGED
956     .sp
957 ph10 278 Return 1 if the (?J) or (?-J) option setting is used in the pattern, otherwise
958     0. The fourth argument should point to an \fBint\fP variable. (?J) and
959     (?-J) set and unset the local PCRE_DUPNAMES option, respectively.
960 ph10 169 .sp
961 nigel 63 PCRE_INFO_LASTLITERAL
962 nigel 75 .sp
963 nigel 65 Return the value of the rightmost literal byte that must exist in any matched
964     string, other than at its start, if such a byte has been recorded. The fourth
965 nigel 75 argument should point to an \fBint\fP variable. If there is no such byte, -1 is
966 nigel 65 returned. For anchored patterns, a last literal byte is recorded only if it
967     follows something of variable length. For example, for the pattern
968 nigel 75 /^a\ed+z\ed+/ the returned value is "z", but for /^a\edz\ed/ the returned value
969 nigel 65 is -1.
970 nigel 75 .sp
971 nigel 63 PCRE_INFO_NAMECOUNT
972     PCRE_INFO_NAMEENTRYSIZE
973     PCRE_INFO_NAMETABLE
974 nigel 75 .sp
975 nigel 63 PCRE supports the use of named as well as numbered capturing parentheses. The
976     names are just an additional way of identifying the parentheses, which still
977 nigel 91 acquire numbers. Several convenience functions such as
978     \fBpcre_get_named_substring()\fP are provided for extracting captured
979     substrings by name. It is also possible to extract the data directly, by first
980     converting the name to a number in order to access the correct pointers in the
981     output vector (described with \fBpcre_exec()\fP below). To do the conversion,
982     you need to use the name-to-number map, which is described by these three
983     values.
984 nigel 75 .P
985 nigel 63 The map consists of a number of fixed-size entries. PCRE_INFO_NAMECOUNT gives
986     the number of entries, and PCRE_INFO_NAMEENTRYSIZE gives the size of each
987 nigel 75 entry; both of these return an \fBint\fP value. The entry size depends on the
988 nigel 63 length of the longest name. PCRE_INFO_NAMETABLE returns a pointer to the first
989 nigel 75 entry of the table (a pointer to \fBchar\fP). The first two bytes of each entry
990 nigel 63 are the number of the capturing parenthesis, most significant byte first. The
991     rest of the entry is the corresponding name, zero terminated. The names are in
992 nigel 91 alphabetical order. When PCRE_DUPNAMES is set, duplicate names are in order of
993     their parentheses numbers. For example, consider the following pattern (assume
994 nigel 63 PCRE_EXTENDED is set, so white space - including newlines - is ignored):
995 nigel 75 .sp
996     .\" JOIN
997 nigel 93 (?<date> (?<year>(\ed\ed)?\ed\ed) -
998     (?<month>\ed\ed) - (?<day>\ed\ed) )
999 nigel 75 .sp
1000 nigel 63 There are four named subpatterns, so the table has four entries, and each entry
1001     in the table is eight bytes long. The table is as follows, with non-printing
1002 nigel 75 bytes shows in hexadecimal, and undefined bytes shown as ??:
1003     .sp
1004 nigel 63 00 01 d a t e 00 ??
1005     00 05 d a y 00 ?? ??
1006     00 04 m o n t h 00
1007     00 02 y e a r 00 ??
1008 nigel 75 .sp
1009     When writing code to extract data from named subpatterns using the
1010 nigel 91 name-to-number map, remember that the length of the entries is likely to be
1011 nigel 75 different for each compiled pattern.
1012     .sp
1013 ph10 169 PCRE_INFO_OKPARTIAL
1014     .sp
1015 ph10 435 Return 1 if the pattern can be used for partial matching with
1016     \fBpcre_exec()\fP, otherwise 0. The fourth argument should point to an
1017     \fBint\fP variable. From release 8.00, this always returns 1, because the
1018     restrictions that previously applied to partial matching have been lifted. The
1019 ph10 169 .\" HREF
1020     \fBpcrepartial\fP
1021     .\"
1022 ph10 426 documentation gives details of partial matching.
1023 ph10 169 .sp
1024 nigel 63 PCRE_INFO_OPTIONS
1025 nigel 75 .sp
1026 nigel 63 Return a copy of the options with which the pattern was compiled. The fourth
1027 nigel 75 argument should point to an \fBunsigned long int\fP variable. These option bits
1028     are those specified in the call to \fBpcre_compile()\fP, modified by any
1029 ph10 196 top-level option settings at the start of the pattern itself. In other words,
1030     they are the options that will be in force when matching starts. For example,
1031     if the pattern /(?im)abc(?-i)d/ is compiled with the PCRE_EXTENDED option, the
1032     result is PCRE_CASELESS, PCRE_MULTILINE, and PCRE_EXTENDED.
1033 nigel 75 .P
1034 nigel 63 A pattern is automatically anchored by PCRE if all of its top-level
1035     alternatives begin with one of the following:
1036 nigel 75 .sp
1037 nigel 63 ^ unless PCRE_MULTILINE is set
1038 nigel 75 \eA always
1039     \eG always
1040     .\" JOIN
1041 nigel 63 .* if PCRE_DOTALL is set and there are no back
1042     references to the subpattern in which .* appears
1043 nigel 75 .sp
1044 nigel 63 For such patterns, the PCRE_ANCHORED bit is set in the options returned by
1045 nigel 75 \fBpcre_fullinfo()\fP.
1046     .sp
1047 nigel 63 PCRE_INFO_SIZE
1048 nigel 75 .sp
1049 nigel 63 Return the size of the compiled pattern, that is, the value that was passed as
1050 nigel 75 the argument to \fBpcre_malloc()\fP when PCRE was getting memory in which to
1051     place the compiled data. The fourth argument should point to a \fBsize_t\fP
1052 nigel 63 variable.
1053 nigel 75 .sp
1054 nigel 63 PCRE_INFO_STUDYSIZE
1055 nigel 75 .sp
1056     Return the size of the data block pointed to by the \fIstudy_data\fP field in
1057     a \fBpcre_extra\fP block. That is, it is the value that was passed to
1058     \fBpcre_malloc()\fP when PCRE was getting memory into which to place the data
1059     created by \fBpcre_study()\fP. The fourth argument should point to a
1060     \fBsize_t\fP variable.
1061     .
1062     .
1063     .SH "OBSOLETE INFO FUNCTION"
1064 nigel 63 .rs
1065     .sp
1066 nigel 75 .B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int
1067     .B *\fIfirstcharptr\fP);
1068 nigel 63 .PP
1069 nigel 75 The \fBpcre_info()\fP function is now obsolete because its interface is too
1070 nigel 63 restrictive to return all the available data about a compiled pattern. New
1071 nigel 75 programs should use \fBpcre_fullinfo()\fP instead. The yield of
1072     \fBpcre_info()\fP is the number of capturing subpatterns, or one of the
1073 nigel 63 following negative numbers:
1074 nigel 75 .sp
1075     PCRE_ERROR_NULL the argument \fIcode\fP was NULL
1076 nigel 63 PCRE_ERROR_BADMAGIC the "magic number" was not found
1077 nigel 75 .sp
1078     If the \fIoptptr\fP argument is not NULL, a copy of the options with which the
1079 nigel 63 pattern was compiled is placed in the integer it points to (see
1080     PCRE_INFO_OPTIONS above).
1081 nigel 75 .P
1082     If the pattern is not anchored and the \fIfirstcharptr\fP argument is not NULL,
1083 nigel 63 it is used to pass back information about the first character of any matched
1084     string (see PCRE_INFO_FIRSTBYTE above).
1085 nigel 75 .
1086     .
1087 nigel 77 .SH "REFERENCE COUNTS"
1088 nigel 63 .rs
1089     .sp
1090 nigel 77 .B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP);
1091     .PP
1092     The \fBpcre_refcount()\fP function is used to maintain a reference count in the
1093     data block that contains a compiled pattern. It is provided for the benefit of
1094     applications that operate in an object-oriented manner, where different parts
1095     of the application may be using the same compiled pattern, but you want to free
1096     the block when they are all done.
1097     .P
1098     When a pattern is compiled, the reference count field is initialized to zero.
1099     It is changed only by calling this function, whose action is to add the
1100     \fIadjust\fP value (which may be positive or negative) to it. The yield of the
1101     function is the new value. However, the value of the count is constrained to
1102     lie between 0 and 65535, inclusive. If the new value is outside these limits,
1103     it is forced to the appropriate limit value.
1104     .P
1105     Except when it is zero, the reference count is not correctly preserved if a
1106     pattern is compiled on one host and then transferred to a host whose byte-order
1107     is different. (This seems a highly unlikely scenario.)
1108     .
1109     .
1110     .SH "MATCHING A PATTERN: THE TRADITIONAL FUNCTION"
1111     .rs
1112     .sp
1113 nigel 75 .B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
1114 nigel 63 .ti +5n
1115 nigel 75 .B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP,
1116 nigel 63 .ti +5n
1117 nigel 75 .B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP);
1118     .P
1119     The function \fBpcre_exec()\fP is called to match a subject string against a
1120     compiled pattern, which is passed in the \fIcode\fP argument. If the
1121 nigel 63 pattern has been studied, the result of the study should be passed in the
1122 nigel 77 \fIextra\fP argument. This function is the main matching facility of the
1123     library, and it operates in a Perl-like manner. For specialist use there is
1124     also an alternative matching function, which is described
1125     .\" HTML <a href="#dfamatch">
1126     .\" </a>
1127     below
1128     .\"
1129     in the section about the \fBpcre_dfa_exec()\fP function.
1130 nigel 75 .P
1131     In most applications, the pattern will have been compiled (and optionally
1132     studied) in the same process that calls \fBpcre_exec()\fP. However, it is
1133     possible to save compiled patterns and study data, and then use them later
1134     in different processes, possibly even on different hosts. For a discussion
1135     about this, see the
1136     .\" HREF
1137     \fBpcreprecompile\fP
1138     .\"
1139     documentation.
1140     .P
1141     Here is an example of a simple call to \fBpcre_exec()\fP:
1142     .sp
1143 nigel 63 int rc;
1144     int ovector[30];
1145     rc = pcre_exec(
1146     re, /* result of pcre_compile() */
1147     NULL, /* we didn't study the pattern */
1148     "some string", /* the subject string */
1149     11, /* the length of the subject string */
1150     0, /* start at offset 0 in the subject */
1151     0, /* default options */
1152 nigel 75 ovector, /* vector of integers for substring information */
1153 nigel 77 30); /* number of elements (NOT size in bytes) */
1154 nigel 75 .
1155     .\" HTML <a name="extradata"></a>
1156     .SS "Extra data for \fBpcre_exec()\fR"
1157     .rs
1158     .sp
1159     If the \fIextra\fP argument is not NULL, it must point to a \fBpcre_extra\fP
1160     data block. The \fBpcre_study()\fP function returns such a block (when it
1161 nigel 63 doesn't return NULL), but you can also create one for yourself, and pass
1162 nigel 87 additional information in it. The \fBpcre_extra\fP block contains the following
1163     fields (not necessarily in this order):
1164 nigel 75 .sp
1165     unsigned long int \fIflags\fP;
1166     void *\fIstudy_data\fP;
1167     unsigned long int \fImatch_limit\fP;
1168 nigel 87 unsigned long int \fImatch_limit_recursion\fP;
1169 nigel 75 void *\fIcallout_data\fP;
1170     const unsigned char *\fItables\fP;
1171     .sp
1172     The \fIflags\fP field is a bitmap that specifies which of the other fields
1173 nigel 63 are set. The flag bits are:
1174 nigel 75 .sp
1175 nigel 63 PCRE_EXTRA_STUDY_DATA
1176     PCRE_EXTRA_MATCH_LIMIT
1177 nigel 87 PCRE_EXTRA_MATCH_LIMIT_RECURSION
1178 nigel 63 PCRE_EXTRA_CALLOUT_DATA
1179 nigel 75 PCRE_EXTRA_TABLES
1180     .sp
1181     Other flag bits should be set to zero. The \fIstudy_data\fP field is set in the
1182     \fBpcre_extra\fP block that is returned by \fBpcre_study()\fP, together with
1183     the appropriate flag bit. You should not set this yourself, but you may add to
1184     the block by setting the other fields and their corresponding flag bits.
1185     .P
1186     The \fImatch_limit\fP field provides a means of preventing PCRE from using up a
1187 nigel 63 vast amount of resources when running patterns that are not going to match,
1188     but which have a very large number of possibilities in their search trees. The
1189 nigel 75 classic example is the use of nested unlimited repeats.
1190     .P
1191     Internally, PCRE uses a function called \fBmatch()\fP which it calls repeatedly
1192 nigel 87 (sometimes recursively). The limit set by \fImatch_limit\fP is imposed on the
1193     number of times this function is called during a match, which has the effect of
1194     limiting the amount of backtracking that can take place. For patterns that are
1195     not anchored, the count restarts from zero for each position in the subject
1196     string.
1197 nigel 75 .P
1198 nigel 87 The default value for the limit can be set when PCRE is built; the default
1199 nigel 63 default is 10 million, which handles all but the most extreme cases. You can
1200 nigel 87 override the default by suppling \fBpcre_exec()\fP with a \fBpcre_extra\fP
1201     block in which \fImatch_limit\fP is set, and PCRE_EXTRA_MATCH_LIMIT is set in
1202     the \fIflags\fP field. If the limit is exceeded, \fBpcre_exec()\fP returns
1203     PCRE_ERROR_MATCHLIMIT.
1204 nigel 75 .P
1205 nigel 87 The \fImatch_limit_recursion\fP field is similar to \fImatch_limit\fP, but
1206     instead of limiting the total number of times that \fBmatch()\fP is called, it
1207     limits the depth of recursion. The recursion depth is a smaller number than the
1208     total number of calls, because not all calls to \fBmatch()\fP are recursive.
1209     This limit is of use only if it is set smaller than \fImatch_limit\fP.
1210     .P
1211     Limiting the recursion depth limits the amount of stack that can be used, or,
1212     when PCRE has been compiled to use memory on the heap instead of the stack, the
1213     amount of heap memory that can be used.
1214     .P
1215     The default value for \fImatch_limit_recursion\fP can be set when PCRE is
1216     built; the default default is the same value as the default for
1217     \fImatch_limit\fP. You can override the default by suppling \fBpcre_exec()\fP
1218     with a \fBpcre_extra\fP block in which \fImatch_limit_recursion\fP is set, and
1219     PCRE_EXTRA_MATCH_LIMIT_RECURSION is set in the \fIflags\fP field. If the limit
1220     is exceeded, \fBpcre_exec()\fP returns PCRE_ERROR_RECURSIONLIMIT.
1221     .P
1222 ph10 440 The \fIcallout_data\fP field is used in conjunction with the "callout" feature,
1223     and is described in the
1224 nigel 75 .\" HREF
1225     \fBpcrecallout\fP
1226     .\"
1227     documentation.
1228     .P
1229     The \fItables\fP field is used to pass a character tables pointer to
1230     \fBpcre_exec()\fP; this overrides the value that is stored with the compiled
1231     pattern. A non-NULL value is stored with the compiled pattern only if custom
1232     tables were supplied to \fBpcre_compile()\fP via its \fItableptr\fP argument.
1233     If NULL is passed to \fBpcre_exec()\fP using this mechanism, it forces PCRE's
1234     internal tables to be used. This facility is helpful when re-using patterns
1235     that have been saved after compiling with an external set of tables, because
1236     the external tables might be at a different address when \fBpcre_exec()\fP is
1237     called. See the
1238     .\" HREF
1239     \fBpcreprecompile\fP
1240     .\"
1241     documentation for a discussion of saving compiled patterns for later use.
1242     .
1243 ph10 226 .\" HTML <a name="execoptions"></a>
1244 nigel 75 .SS "Option bits for \fBpcre_exec()\fP"
1245     .rs
1246     .sp
1247     The unused bits of the \fIoptions\fP argument for \fBpcre_exec()\fP must be
1248 nigel 91 zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP,
1249 ph10 442 PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NOTEMPTY_ATSTART,
1250     PCRE_NO_START_OPTIMIZE, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL_SOFT, and
1251     PCRE_PARTIAL_HARD.
1252 nigel 75 .sp
1253     PCRE_ANCHORED
1254     .sp
1255     The PCRE_ANCHORED option limits \fBpcre_exec()\fP to matching at the first
1256     matching position. If a pattern was compiled with PCRE_ANCHORED, or turned out
1257     to be anchored by virtue of its contents, it cannot be made unachored at
1258     matching time.
1259     .sp
1260 ph10 231 PCRE_BSR_ANYCRLF
1261     PCRE_BSR_UNICODE
1262     .sp
1263     These options (which are mutually exclusive) control what the \eR escape
1264     sequence matches. The choice is either to match only CR, LF, or CRLF, or to
1265     match any Unicode newline sequence. These options override the choice that was
1266     made or defaulted when the pattern was compiled.
1267     .sp
1268 nigel 91 PCRE_NEWLINE_CR
1269     PCRE_NEWLINE_LF
1270     PCRE_NEWLINE_CRLF
1271 ph10 150 PCRE_NEWLINE_ANYCRLF
1272 nigel 93 PCRE_NEWLINE_ANY
1273 nigel 91 .sp
1274     These options override the newline definition that was chosen or defaulted when
1275 nigel 93 the pattern was compiled. For details, see the description of
1276     \fBpcre_compile()\fP above. During matching, the newline choice affects the
1277     behaviour of the dot, circumflex, and dollar metacharacters. It may also alter
1278     the way the match position is advanced after a match failure for an unanchored
1279 ph10 227 pattern.
1280 ph10 225 .P
1281 ph10 226 When PCRE_NEWLINE_CRLF, PCRE_NEWLINE_ANYCRLF, or PCRE_NEWLINE_ANY is set, and a
1282     match attempt for an unanchored pattern fails when the current position is at a
1283 ph10 230 CRLF sequence, and the pattern contains no explicit matches for CR or LF
1284 ph10 226 characters, the match position is advanced by two characters instead of one, in
1285     other words, to after the CRLF.
1286     .P
1287 ph10 227 The above rule is a compromise that makes the most common cases work as
1288     expected. For example, if the pattern is .+A (and the PCRE_DOTALL option is not
1289     set), it does not match the string "\er\enA" because, after failing at the
1290     start, it skips both the CR and the LF before retrying. However, the pattern
1291     [\er\en]A does match that string, because it contains an explicit CR or LF
1292 ph10 226 reference, and so advances only by one character after the first failure.
1293     .P
1294 ph10 231 An explicit match for CR of LF is either a literal appearance of one of those
1295     characters, or one of the \er or \en escape sequences. Implicit matches such as
1296 ph10 230 [^X] do not count, nor does \es (which includes CR and LF in the characters
1297     that it matches).
1298     .P
1299 ph10 226 Notwithstanding the above, anomalous effects may still occur when CRLF is a
1300     valid newline sequence and explicit \er or \en escapes appear in the pattern.
1301 nigel 91 .sp
1302 nigel 63 PCRE_NOTBOL
1303 nigel 75 .sp
1304     This option specifies that first character of the subject string is not the
1305     beginning of a line, so the circumflex metacharacter should not match before
1306     it. Setting this without PCRE_MULTILINE (at compile time) causes circumflex
1307     never to match. This option affects only the behaviour of the circumflex
1308     metacharacter. It does not affect \eA.
1309     .sp
1310 nigel 63 PCRE_NOTEOL
1311 nigel 75 .sp
1312     This option specifies that the end of the subject string is not the end of a
1313     line, so the dollar metacharacter should not match it nor (except in multiline
1314     mode) a newline immediately before it. Setting this without PCRE_MULTILINE (at
1315     compile time) causes dollar never to match. This option affects only the
1316     behaviour of the dollar metacharacter. It does not affect \eZ or \ez.
1317     .sp
1318 nigel 63 PCRE_NOTEMPTY
1319 nigel 75 .sp
1320 nigel 63 An empty string is not considered to be a valid match if this option is set. If
1321     there are alternatives in the pattern, they are tried. If all the alternatives
1322     match the empty string, the entire match fails. For example, if the pattern
1323 nigel 75 .sp
1324 nigel 63 a?b?
1325 nigel 75 .sp
1326 ph10 442 is applied to a string not beginning with "a" or "b", it matches an empty
1327 nigel 63 string at the start of the subject. With PCRE_NOTEMPTY set, this match is not
1328     valid, so PCRE searches further into the string for occurrences of "a" or "b".
1329 ph10 442 .sp
1330     PCRE_NOTEMPTY_ATSTART
1331     .sp
1332     This is like PCRE_NOTEMPTY, except that an empty string match that is not at
1333     the start of the subject is permitted. If the pattern is anchored, such a match
1334     can occur only if the pattern contains \eK.
1335 nigel 75 .P
1336 ph10 442 Perl has no direct equivalent of PCRE_NOTEMPTY or PCRE_NOTEMPTY_ATSTART, but it
1337     does make a special case of a pattern match of the empty string within its
1338     \fBsplit()\fP function, and when using the /g modifier. It is possible to
1339     emulate Perl's behaviour after matching a null string by first trying the match
1340     again at the same offset with PCRE_NOTEMPTY_ATSTART and PCRE_ANCHORED, and then
1341     if that fails, by advancing the starting offset (see below) and trying an
1342     ordinary match again. There is some code that demonstrates how to do this in
1343     the
1344 ph10 429 .\" HREF
1345     \fBpcredemo\fP
1346     .\"
1347     sample program.
1348 nigel 75 .sp
1349 ph10 389 PCRE_NO_START_OPTIMIZE
1350     .sp
1351 ph10 392 There are a number of optimizations that \fBpcre_exec()\fP uses at the start of
1352 ph10 389 a match, in order to speed up the process. For example, if it is known that a
1353     match must start with a specific character, it searches the subject for that
1354     character, and fails immediately if it cannot find it, without actually running
1355     the main matching function. When callouts are in use, these optimizations can
1356     cause them to be skipped. This option disables the "start-up" optimizations,
1357     causing performance to suffer, but ensuring that the callouts do occur.
1358     .sp
1359 nigel 75 PCRE_NO_UTF8_CHECK
1360     .sp
1361     When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8
1362     string is automatically checked when \fBpcre_exec()\fP is subsequently called.
1363 ph10 211 The value of \fIstartoffset\fP is also checked to ensure that it points to the
1364     start of a UTF-8 character. There is a discussion about the validity of UTF-8
1365     strings in the
1366     .\" HTML <a href="pcre.html#utf8strings">
1367     .\" </a>
1368     section on UTF-8 support
1369     .\"
1370     in the main
1371     .\" HREF
1372     \fBpcre\fP
1373     .\"
1374     page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_exec()\fP returns
1375     the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP contains an invalid value,
1376 ph10 209 PCRE_ERROR_BADUTF8_OFFSET is returned.
1377 nigel 75 .P
1378     If you already know that your subject is valid, and you want to skip these
1379     checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when
1380     calling \fBpcre_exec()\fP. You might want to do this for the second and
1381     subsequent calls to \fBpcre_exec()\fP if you are making repeated calls to find
1382     all the matches in a single subject string. However, you should be sure that
1383     the value of \fIstartoffset\fP points to the start of a UTF-8 character. When
1384     PCRE_NO_UTF8_CHECK is set, the effect of passing an invalid UTF-8 string as a
1385     subject, or a value of \fIstartoffset\fP that does not point to the start of a
1386     UTF-8 character, is undefined. Your program may crash.
1387     .sp
1388 ph10 428 PCRE_PARTIAL_HARD
1389     PCRE_PARTIAL_SOFT
1390 nigel 75 .sp
1391 ph10 428 These options turn on the partial matching feature. For backwards
1392     compatibility, PCRE_PARTIAL is a synonym for PCRE_PARTIAL_SOFT. A partial match
1393     occurs if the end of the subject string is reached successfully, but there are
1394     not enough subject characters to complete the match. If this happens when
1395     PCRE_PARTIAL_HARD is set, \fBpcre_exec()\fP immediately returns
1396     PCRE_ERROR_PARTIAL. Otherwise, if PCRE_PARTIAL_SOFT is set, matching continues
1397     by testing any other alternatives. Only if they all fail is PCRE_ERROR_PARTIAL
1398     returned (instead of PCRE_ERROR_NOMATCH). The portion of the string that
1399 ph10 435 was inspected when the partial match was found is set as the first matching
1400     string. There is a more detailed discussion in the
1401 nigel 75 .\" HREF
1402     \fBpcrepartial\fP
1403     .\"
1404     documentation.
1405     .
1406     .SS "The string to be matched by \fBpcre_exec()\fP"
1407     .rs
1408     .sp
1409     The subject string is passed to \fBpcre_exec()\fP as a pointer in
1410 ph10 368 \fIsubject\fP, a length (in bytes) in \fIlength\fP, and a starting byte offset
1411     in \fIstartoffset\fP. In UTF-8 mode, the byte offset must point to the start of
1412     a UTF-8 character. Unlike the pattern string, the subject may contain binary
1413     zero bytes. When the starting offset is zero, the search for a match starts at
1414     the beginning of the subject, and this is by far the most common case.
1415 nigel 75 .P
1416 nigel 63 A non-zero starting offset is useful when searching for another match in the
1417 nigel 75 same subject by calling \fBpcre_exec()\fP again after a previous success.
1418     Setting \fIstartoffset\fP differs from just passing over a shortened string and
1419 nigel 63 setting PCRE_NOTBOL in the case of a pattern that begins with any kind of
1420     lookbehind. For example, consider the pattern
1421 nigel 75 .sp
1422     \eBiss\eB
1423     .sp
1424     which finds occurrences of "iss" in the middle of words. (\eB matches only if
1425 nigel 63 the current position in the subject is not a word boundary.) When applied to
1426 nigel 75 the string "Mississipi" the first call to \fBpcre_exec()\fP finds the first
1427     occurrence. If \fBpcre_exec()\fP is called again with just the remainder of the
1428     subject, namely "issipi", it does not match, because \eB is always false at the
1429 nigel 63 start of the subject, which is deemed to be a word boundary. However, if
1430 nigel 75 \fBpcre_exec()\fP is passed the entire string again, but with \fIstartoffset\fP
1431 nigel 63 set to 4, it finds the second occurrence of "iss" because it is able to look
1432     behind the starting point to discover that it is preceded by a letter.
1433 nigel 75 .P
1434 nigel 63 If a non-zero starting offset is passed when the pattern is anchored, one
1435 nigel 75 attempt to match at the given offset is made. This can only succeed if the
1436 nigel 63 pattern does not require the match to be at the start of the subject.
1437 nigel 75 .
1438     .SS "How \fBpcre_exec()\fP returns captured substrings"
1439     .rs
1440     .sp
1441 nigel 63 In general, a pattern matches a certain portion of the subject, and in
1442     addition, further substrings from the subject may be picked out by parts of the
1443     pattern. Following the usage in Jeffrey Friedl's book, this is called
1444     "capturing" in what follows, and the phrase "capturing subpattern" is used for
1445     a fragment of a pattern that picks out a substring. PCRE supports several other
1446     kinds of parenthesized subpattern that do not cause substrings to be captured.
1447 nigel 75 .P
1448 ph10 368 Captured substrings are returned to the caller via a vector of integers whose
1449     address is passed in \fIovector\fP. The number of elements in the vector is
1450     passed in \fIovecsize\fP, which must be a non-negative number. \fBNote\fP: this
1451     argument is NOT the size of \fIovector\fP in bytes.
1452 nigel 75 .P
1453     The first two-thirds of the vector is used to pass back captured substrings,
1454     each substring using a pair of integers. The remaining third of the vector is
1455     used as workspace by \fBpcre_exec()\fP while matching capturing subpatterns,
1456 ph10 368 and is not available for passing back information. The number passed in
1457 nigel 75 \fIovecsize\fP should always be a multiple of three. If it is not, it is
1458     rounded down.
1459     .P
1460     When a match is successful, information about captured substrings is returned
1461     in pairs of integers, starting at the beginning of \fIovector\fP, and
1462 ph10 371 continuing up to two-thirds of its length at the most. The first element of
1463 ph10 368 each pair is set to the byte offset of the first character in a substring, and
1464     the second is set to the byte offset of the first character after the end of a
1465     substring. \fBNote\fP: these values are always byte offsets, even in UTF-8
1466     mode. They are not character counts.
1467 nigel 75 .P
1468 ph10 368 The first pair of integers, \fIovector[0]\fP and \fIovector[1]\fP, identify the
1469     portion of the subject string matched by the entire pattern. The next pair is
1470     used for the first capturing subpattern, and so on. The value returned by
1471     \fBpcre_exec()\fP is one more than the highest numbered pair that has been set.
1472     For example, if two substrings have been captured, the returned value is 3. If
1473     there are no capturing subpatterns, the return value from a successful match is
1474     1, indicating that just the first pair of offsets has been set.
1475     .P
1476 nigel 63 If a capturing subpattern is matched repeatedly, it is the last portion of the
1477 nigel 75 string that it matched that is returned.
1478     .P
1479     If the vector is too small to hold all the captured substring offsets, it is
1480     used as far as possible (up to two-thirds of its length), and the function
1481 ph10 368 returns a value of zero. If the substring offsets are not of interest,
1482     \fBpcre_exec()\fP may be called with \fIovector\fP passed as NULL and
1483 nigel 75 \fIovecsize\fP as zero. However, if the pattern contains back references and
1484     the \fIovector\fP is not big enough to remember the related substrings, PCRE
1485     has to get additional memory for use during matching. Thus it is usually
1486     advisable to supply an \fIovector\fP.
1487     .P
1488 nigel 91 The \fBpcre_info()\fP function can be used to find out how many capturing
1489 nigel 63 subpatterns there are in a compiled pattern. The smallest size for
1490 nigel 75 \fIovector\fP that will allow for \fIn\fP captured substrings, in addition to
1491     the offsets of the substring matched by the whole pattern, is (\fIn\fP+1)*3.
1492 nigel 91 .P
1493     It is possible for capturing subpattern number \fIn+1\fP to match some part of
1494     the subject when subpattern \fIn\fP has not been used at all. For example, if
1495     the string "abc" is matched against the pattern (a|(z))(bc) the return from the
1496     function is 4, and subpatterns 1 and 3 are matched, but 2 is not. When this
1497     happens, both values in the offset pairs corresponding to unused subpatterns
1498     are set to -1.
1499     .P
1500     Offset values that correspond to unused subpatterns at the end of the
1501     expression are also set to -1. For example, if the string "abc" is matched
1502     against the pattern (abc)(x(yz)?)? subpatterns 2 and 3 are not matched. The
1503     return from the function is 2, because the highest used capturing subpattern
1504     number is 1. However, you can refer to the offsets for the second and third
1505     capturing subpatterns if you wish (assuming the vector is large enough, of
1506     course).
1507     .P
1508     Some convenience functions are provided for extracting the captured substrings
1509     as separate strings. These are described below.
1510 nigel 75 .
1511 nigel 77 .\" HTML <a name="errorlist"></a>
1512 nigel 91 .SS "Error return values from \fBpcre_exec()\fP"
1513 nigel 75 .rs
1514     .sp
1515     If \fBpcre_exec()\fP fails, it returns a negative number. The following are
1516 nigel 63 defined in the header file:
1517 nigel 75 .sp
1518 nigel 63 PCRE_ERROR_NOMATCH (-1)
1519 nigel 75 .sp
1520 nigel 63 The subject string did not match the pattern.
1521 nigel 75 .sp
1522 nigel 63 PCRE_ERROR_NULL (-2)
1523 nigel 75 .sp
1524     Either \fIcode\fP or \fIsubject\fP was passed as NULL, or \fIovector\fP was
1525     NULL and \fIovecsize\fP was not zero.
1526     .sp
1527 nigel 63 PCRE_ERROR_BADOPTION (-3)
1528 nigel 75 .sp
1529     An unrecognized bit was set in the \fIoptions\fP argument.
1530     .sp
1531 nigel 63 PCRE_ERROR_BADMAGIC (-4)
1532 nigel 75 .sp
1533 nigel 63 PCRE stores a 4-byte "magic number" at the start of the compiled code, to catch
1534 nigel 75 the case when it is passed a junk pointer and to detect when a pattern that was
1535     compiled in an environment of one endianness is run in an environment with the
1536     other endianness. This is the error that PCRE gives when the magic number is
1537     not present.
1538     .sp
1539 nigel 93 PCRE_ERROR_UNKNOWN_OPCODE (-5)
1540 nigel 75 .sp
1541 nigel 63 While running the pattern match, an unknown item was encountered in the
1542     compiled pattern. This error could be caused by a bug in PCRE or by overwriting
1543     of the compiled pattern.
1544 nigel 75 .sp
1545 nigel 63 PCRE_ERROR_NOMEMORY (-6)
1546 nigel 75 .sp
1547     If a pattern contains back references, but the \fIovector\fP that is passed to
1548     \fBpcre_exec()\fP is not big enough to remember the referenced substrings, PCRE
1549 nigel 63 gets a block of memory at the start of matching to use for this purpose. If the
1550 nigel 75 call via \fBpcre_malloc()\fP fails, this error is given. The memory is
1551     automatically freed at the end of matching.
1552     .sp
1553 nigel 63 PCRE_ERROR_NOSUBSTRING (-7)
1554 nigel 75 .sp
1555     This error is used by the \fBpcre_copy_substring()\fP,
1556     \fBpcre_get_substring()\fP, and \fBpcre_get_substring_list()\fP functions (see
1557     below). It is never returned by \fBpcre_exec()\fP.
1558     .sp
1559 nigel 63 PCRE_ERROR_MATCHLIMIT (-8)
1560 nigel 75 .sp
1561 nigel 87 The backtracking limit, as specified by the \fImatch_limit\fP field in a
1562     \fBpcre_extra\fP structure (or defaulted) was reached. See the description
1563     above.
1564     .sp
1565 nigel 63 PCRE_ERROR_CALLOUT (-9)
1566 nigel 75 .sp
1567     This error is never generated by \fBpcre_exec()\fP itself. It is provided for
1568 nigel 63 use by callout functions that want to yield a distinctive error code. See the
1569 nigel 75 .\" HREF
1570     \fBpcrecallout\fP
1571     .\"
1572     documentation for details.
1573     .sp
1574 nigel 73 PCRE_ERROR_BADUTF8 (-10)
1575 nigel 75 .sp
1576 nigel 71 A string that contains an invalid UTF-8 byte sequence was passed as a subject.
1577 nigel 75 .sp
1578 nigel 73 PCRE_ERROR_BADUTF8_OFFSET (-11)
1579 nigel 75 .sp
1580 nigel 73 The UTF-8 byte sequence that was passed as a subject was valid, but the value
1581 nigel 75 of \fIstartoffset\fP did not point to the beginning of a UTF-8 character.
1582     .sp
1583 nigel 77 PCRE_ERROR_PARTIAL (-12)
1584 nigel 75 .sp
1585     The subject string did not match, but it did match partially. See the
1586     .\" HREF
1587     \fBpcrepartial\fP
1588     .\"
1589     documentation for details of partial matching.
1590     .sp
1591 nigel 77 PCRE_ERROR_BADPARTIAL (-13)
1592 nigel 75 .sp
1593 ph10 426 This code is no longer in use. It was formerly returned when the PCRE_PARTIAL
1594     option was used with a compiled pattern containing items that were not
1595     supported for partial matching. From release 8.00 onwards, there are no
1596     restrictions on partial matching.
1597 nigel 75 .sp
1598 nigel 77 PCRE_ERROR_INTERNAL (-14)
1599 nigel 75 .sp
1600     An unexpected internal error has occurred. This error could be caused by a bug
1601     in PCRE or by overwriting of the compiled pattern.
1602     .sp
1603 nigel 77 PCRE_ERROR_BADCOUNT (-15)
1604 nigel 75 .sp
1605     This error is given if the value of the \fIovecsize\fP argument is negative.
1606 nigel 93 .sp
1607     PCRE_ERROR_RECURSIONLIMIT (-21)
1608     .sp
1609     The internal recursion limit, as specified by the \fImatch_limit_recursion\fP
1610     field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the
1611     description above.
1612     .sp
1613     PCRE_ERROR_BADNEWLINE (-23)
1614     .sp
1615     An invalid combination of PCRE_NEWLINE_\fIxxx\fP options was given.
1616     .P
1617 ph10 197 Error numbers -16 to -20 and -22 are not used by \fBpcre_exec()\fP.
1618 nigel 75 .
1619     .
1620     .SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER"
1621 nigel 63 .rs
1622     .sp
1623 nigel 75 .B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP,
1624 nigel 63 .ti +5n
1625 nigel 75 .B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP,
1626 nigel 63 .ti +5n
1627 nigel 75 .B int \fIbuffersize\fP);
1628 nigel 63 .PP
1629 nigel 75 .B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP,
1630 nigel 63 .ti +5n
1631 nigel 75 .B int \fIstringcount\fP, int \fIstringnumber\fP,
1632 nigel 63 .ti +5n
1633 nigel 75 .B const char **\fIstringptr\fP);
1634 nigel 63 .PP
1635 nigel 75 .B int pcre_get_substring_list(const char *\fIsubject\fP,
1636 nigel 63 .ti +5n
1637 nigel 75 .B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);"
1638 nigel 63 .PP
1639     Captured substrings can be accessed directly by using the offsets returned by
1640 nigel 75 \fBpcre_exec()\fP in \fIovector\fP. For convenience, the functions
1641     \fBpcre_copy_substring()\fP, \fBpcre_get_substring()\fP, and
1642     \fBpcre_get_substring_list()\fP are provided for extracting captured substrings
1643 nigel 63 as new, separate, zero-terminated strings. These functions identify substrings
1644     by number. The next section describes functions for extracting named
1645 nigel 91 substrings.
1646 nigel 75 .P
1647 nigel 91 A substring that contains a binary zero is correctly extracted and has a
1648     further zero added on the end, but the result is not, of course, a C string.
1649     However, you can process such a string by referring to the length that is
1650     returned by \fBpcre_copy_substring()\fP and \fBpcre_get_substring()\fP.
1651     Unfortunately, the interface to \fBpcre_get_substring_list()\fP is not adequate
1652     for handling strings containing binary zeros, because the end of the final
1653     string is not independently indicated.
1654     .P
1655 nigel 63 The first three arguments are the same for all three of these functions:
1656 nigel 75 \fIsubject\fP is the subject string that has just been successfully matched,
1657     \fIovector\fP is a pointer to the vector of integer offsets that was passed to
1658     \fBpcre_exec()\fP, and \fIstringcount\fP is the number of substrings that were
1659 nigel 63 captured by the match, including the substring that matched the entire regular
1660 nigel 75 expression. This is the value returned by \fBpcre_exec()\fP if it is greater
1661     than zero. If \fBpcre_exec()\fP returned zero, indicating that it ran out of
1662     space in \fIovector\fP, the value passed as \fIstringcount\fP should be the
1663     number of elements in the vector divided by three.
1664     .P
1665     The functions \fBpcre_copy_substring()\fP and \fBpcre_get_substring()\fP
1666     extract a single substring, whose number is given as \fIstringnumber\fP. A
1667     value of zero extracts the substring that matched the entire pattern, whereas
1668     higher values extract the captured substrings. For \fBpcre_copy_substring()\fP,
1669     the string is placed in \fIbuffer\fP, whose length is given by
1670     \fIbuffersize\fP, while for \fBpcre_get_substring()\fP a new block of memory is
1671     obtained via \fBpcre_malloc\fP, and its address is returned via
1672     \fIstringptr\fP. The yield of the function is the length of the string, not
1673 nigel 93 including the terminating zero, or one of these error codes:
1674 nigel 75 .sp
1675 nigel 63 PCRE_ERROR_NOMEMORY (-6)
1676 nigel 75 .sp
1677     The buffer was too small for \fBpcre_copy_substring()\fP, or the attempt to get
1678     memory failed for \fBpcre_get_substring()\fP.
1679     .sp
1680 nigel 63 PCRE_ERROR_NOSUBSTRING (-7)
1681 nigel 75 .sp
1682     There is no substring whose number is \fIstringnumber\fP.
1683     .P
1684     The \fBpcre_get_substring_list()\fP function extracts all available substrings
1685 nigel 63 and builds a list of pointers to them. All this is done in a single block of
1686 nigel 75 memory that is obtained via \fBpcre_malloc\fP. The address of the memory block
1687     is returned via \fIlistptr\fP, which is also the start of the list of string
1688 nigel 63 pointers. The end of the list is marked by a NULL pointer. The yield of the
1689 nigel 93 function is zero if all went well, or the error code
1690 nigel 75 .sp
1691 nigel 63 PCRE_ERROR_NOMEMORY (-6)
1692 nigel 75 .sp
1693 nigel 63 if the attempt to get the memory block failed.
1694 nigel 75 .P
1695 nigel 63 When any of these functions encounter a substring that is unset, which can
1696 nigel 75 happen when capturing subpattern number \fIn+1\fP matches some part of the
1697     subject, but subpattern \fIn\fP has not been used at all, they return an empty
1698 nigel 63 string. This can be distinguished from a genuine zero-length substring by
1699 nigel 75 inspecting the appropriate offset in \fIovector\fP, which is negative for unset
1700 nigel 63 substrings.
1701 nigel 75 .P
1702     The two convenience functions \fBpcre_free_substring()\fP and
1703     \fBpcre_free_substring_list()\fP can be used to free the memory returned by
1704     a previous call of \fBpcre_get_substring()\fP or
1705     \fBpcre_get_substring_list()\fP, respectively. They do nothing more than call
1706     the function pointed to by \fBpcre_free\fP, which of course could be called
1707 nigel 63 directly from a C program. However, PCRE is used in some situations where it is
1708 nigel 91 linked via a special interface to another programming language that cannot use
1709 nigel 75 \fBpcre_free\fP directly; it is for these cases that the functions are
1710 nigel 63 provided.
1711 nigel 75 .
1712     .
1713     .SH "EXTRACTING CAPTURED SUBSTRINGS BY NAME"
1714 nigel 63 .rs
1715     .sp
1716 nigel 75 .B int pcre_get_stringnumber(const pcre *\fIcode\fP,
1717 nigel 63 .ti +5n
1718 nigel 75 .B const char *\fIname\fP);
1719 nigel 63 .PP
1720 nigel 75 .B int pcre_copy_named_substring(const pcre *\fIcode\fP,
1721 nigel 63 .ti +5n
1722 nigel 75 .B const char *\fIsubject\fP, int *\fIovector\fP,
1723     .ti +5n
1724     .B int \fIstringcount\fP, const char *\fIstringname\fP,
1725     .ti +5n
1726     .B char *\fIbuffer\fP, int \fIbuffersize\fP);
1727 nigel 63 .PP
1728 nigel 75 .B int pcre_get_named_substring(const pcre *\fIcode\fP,
1729 nigel 63 .ti +5n
1730 nigel 75 .B const char *\fIsubject\fP, int *\fIovector\fP,
1731 nigel 63 .ti +5n
1732 nigel 75 .B int \fIstringcount\fP, const char *\fIstringname\fP,
1733 nigel 63 .ti +5n
1734 nigel 75 .B const char **\fIstringptr\fP);
1735 nigel 63 .PP
1736 nigel 75 To extract a substring by name, you first have to find associated number.
1737     For example, for this pattern
1738     .sp
1739 nigel 93 (a+)b(?<xxx>\ed+)...
1740 nigel 75 .sp
1741 nigel 91 the number of the subpattern called "xxx" is 2. If the name is known to be
1742     unique (PCRE_DUPNAMES was not set), you can find the number from the name by
1743     calling \fBpcre_get_stringnumber()\fP. The first argument is the compiled
1744     pattern, and the second is the name. The yield of the function is the
1745 nigel 75 subpattern number, or PCRE_ERROR_NOSUBSTRING (-7) if there is no subpattern of
1746     that name.
1747     .P
1748     Given the number, you can extract the substring directly, or use one of the
1749     functions described in the previous section. For convenience, there are also
1750     two functions that do the whole job.
1751     .P
1752 nigel 91 Most of the arguments of \fBpcre_copy_named_substring()\fP and
1753     \fBpcre_get_named_substring()\fP are the same as those for the similarly named
1754 nigel 75 functions that extract by number. As these are described in the previous
1755     section, they are not re-described here. There are just two differences:
1756     .P
1757 nigel 63 First, instead of a substring number, a substring name is given. Second, there
1758     is an extra argument, given at the start, which is a pointer to the compiled
1759     pattern. This is needed in order to gain access to the name-to-number
1760     translation table.
1761 nigel 75 .P
1762     These functions call \fBpcre_get_stringnumber()\fP, and if it succeeds, they
1763 ph10 127 then call \fBpcre_copy_substring()\fP or \fBpcre_get_substring()\fP, as
1764     appropriate. \fBNOTE:\fP If PCRE_DUPNAMES is set and there are duplicate names,
1765 ph10 128 the behaviour may not be what you want (see the next section).
1766 ph10 385 .P
1767     \fBWarning:\fP If the pattern uses the "(?|" feature to set up multiple
1768 ph10 392 subpatterns with the same number, you cannot use names to distinguish them,
1769     because names are not included in the compiled code. The matching process uses
1770 ph10 385 only numbers.
1771 nigel 77 .
1772 nigel 91 .SH "DUPLICATE SUBPATTERN NAMES"
1773     .rs
1774     .sp
1775     .B int pcre_get_stringtable_entries(const pcre *\fIcode\fP,
1776     .ti +5n
1777     .B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP);
1778     .PP
1779     When a pattern is compiled with the PCRE_DUPNAMES option, names for subpatterns
1780     are not required to be unique. Normally, patterns with duplicate names are such
1781     that in any one match, only one of the named subpatterns participates. An
1782     example is shown in the
1783     .\" HREF
1784     \fBpcrepattern\fP
1785     .\"
1786 ph10 208 documentation.
1787 ph10 203 .P
1788     When duplicates are present, \fBpcre_copy_named_substring()\fP and
1789     \fBpcre_get_named_substring()\fP return the first substring corresponding to
1790     the given name that is set. If none are set, PCRE_ERROR_NOSUBSTRING (-7) is
1791     returned; no data is returned. The \fBpcre_get_stringnumber()\fP function
1792     returns one of the numbers that are associated with the name, but it is not
1793     defined which it is.
1794     .P
1795 nigel 91 If you want to get full details of all captured substrings for a given name,
1796     you must use the \fBpcre_get_stringtable_entries()\fP function. The first
1797     argument is the compiled pattern, and the second is the name. The third and
1798     fourth are pointers to variables which are updated by the function. After it
1799     has run, they point to the first and last entries in the name-to-number table
1800     for the given name. The function itself returns the length of each entry, or
1801 nigel 93 PCRE_ERROR_NOSUBSTRING (-7) if there are none. The format of the table is
1802     described above in the section entitled \fIInformation about a pattern\fP.
1803     Given all the relevant entries for the name, you can extract each of their
1804     numbers, and hence the captured data, if any.
1805 nigel 91 .
1806     .
1807 nigel 77 .SH "FINDING ALL POSSIBLE MATCHES"
1808     .rs
1809     .sp
1810     The traditional matching function uses a similar algorithm to Perl, which stops
1811     when it finds the first match, starting at a given point in the subject. If you
1812     want to find all possible matches, or the longest possible match, consider
1813     using the alternative matching function (see below) instead. If you cannot use
1814     the alternative function, but still need to find all possible matches, you
1815     can kludge it up by making use of the callout facility, which is described in
1816     the
1817     .\" HREF
1818     \fBpcrecallout\fP
1819     .\"
1820     documentation.
1821 nigel 75 .P
1822 nigel 77 What you have to do is to insert a callout right at the end of the pattern.
1823     When your callout function is called, extract and save the current matched
1824     substring. Then return 1, which forces \fBpcre_exec()\fP to backtrack and try
1825     other alternatives. Ultimately, when it runs out of matches, \fBpcre_exec()\fP
1826     will yield PCRE_ERROR_NOMATCH.
1827     .
1828     .
1829     .\" HTML <a name="dfamatch"></a>
1830     .SH "MATCHING A PATTERN: THE ALTERNATIVE FUNCTION"
1831     .rs
1832     .sp
1833     .B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP,"
1834     .ti +5n
1835     .B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP,
1836     .ti +5n
1837     .B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP,
1838     .ti +5n
1839     .B int *\fIworkspace\fP, int \fIwscount\fP);
1840     .P
1841     The function \fBpcre_dfa_exec()\fP is called to match a subject string against
1842 nigel 93 a compiled pattern, using a matching algorithm that scans the subject string
1843     just once, and does not backtrack. This has different characteristics to the
1844     normal algorithm, and is not compatible with Perl. Some of the features of PCRE
1845     patterns are not supported. Nevertheless, there are times when this kind of
1846 ph10 435 matching can be useful. For a discussion of the two matching algorithms, and a
1847     list of features that \fBpcre_dfa_exec()\fP does not support, see the
1848 nigel 77 .\" HREF
1849     \fBpcrematching\fP
1850     .\"
1851     documentation.
1852     .P
1853     The arguments for the \fBpcre_dfa_exec()\fP function are the same as for
1854     \fBpcre_exec()\fP, plus two extras. The \fIovector\fP argument is used in a
1855     different way, and this is described below. The other common arguments are used
1856     in the same way as for \fBpcre_exec()\fP, so their description is not repeated
1857     here.
1858     .P
1859     The two additional arguments provide workspace for the function. The workspace
1860     vector should contain at least 20 elements. It is used for keeping track of
1861     multiple paths through the pattern tree. More workspace will be needed for
1862 nigel 91 patterns and subjects where there are a lot of potential matches.
1863 nigel 77 .P
1864 nigel 87 Here is an example of a simple call to \fBpcre_dfa_exec()\fP:
1865 nigel 77 .sp
1866     int rc;
1867     int ovector[10];
1868     int wspace[20];
1869 nigel 87 rc = pcre_dfa_exec(
1870 nigel 77 re, /* result of pcre_compile() */
1871     NULL, /* we didn't study the pattern */
1872     "some string", /* the subject string */
1873     11, /* the length of the subject string */
1874     0, /* start at offset 0 in the subject */
1875     0, /* default options */
1876     ovector, /* vector of integers for substring information */
1877     10, /* number of elements (NOT size in bytes) */
1878     wspace, /* working space vector */
1879     20); /* number of elements (NOT size in bytes) */
1880     .
1881     .SS "Option bits for \fBpcre_dfa_exec()\fP"
1882     .rs
1883     .sp
1884     The unused bits of the \fIoptions\fP argument for \fBpcre_dfa_exec()\fP must be
1885 nigel 91 zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP,
1886 ph10 442 PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NOTEMPTY_ATSTART,
1887     PCRE_NO_UTF8_CHECK, PCRE_PARTIAL_HARD, PCRE_PARTIAL_SOFT, PCRE_DFA_SHORTEST,
1888     and PCRE_DFA_RESTART. All but the last four of these are exactly the same as
1889     for \fBpcre_exec()\fP, so their description is not repeated here.
1890 nigel 77 .sp
1891 ph10 428 PCRE_PARTIAL_HARD
1892     PCRE_PARTIAL_SOFT
1893 nigel 77 .sp
1894 ph10 428 These have the same general effect as they do for \fBpcre_exec()\fP, but the
1895     details are slightly different. When PCRE_PARTIAL_HARD is set for
1896     \fBpcre_dfa_exec()\fP, it returns PCRE_ERROR_PARTIAL if the end of the subject
1897     is reached and there is still at least one matching possibility that requires
1898     additional characters. This happens even if some complete matches have also
1899     been found. When PCRE_PARTIAL_SOFT is set, the return code PCRE_ERROR_NOMATCH
1900     is converted into PCRE_ERROR_PARTIAL if the end of the subject is reached,
1901     there have been no complete matches, but there is still at least one matching
1902 ph10 435 possibility. The portion of the string that was inspected when the longest
1903     partial match was found is set as the first matching string in both cases.
1904 nigel 77 .sp
1905     PCRE_DFA_SHORTEST
1906     .sp
1907     Setting the PCRE_DFA_SHORTEST option causes the matching algorithm to stop as
1908 nigel 93 soon as it has found one match. Because of the way the alternative algorithm
1909     works, this is necessarily the shortest possible match at the first possible
1910     matching point in the subject string.
1911 nigel 77 .sp
1912     PCRE_DFA_RESTART
1913     .sp
1914 ph10 428 When \fBpcre_dfa_exec()\fP returns a partial match, it is possible to call it
1915     again, with additional subject characters, and have it continue with the same
1916     match. The PCRE_DFA_RESTART option requests this action; when it is set, the
1917     \fIworkspace\fP and \fIwscount\fP options must reference the same vector as
1918     before because data about the match so far is left in them after a partial
1919     match. There is more discussion of this facility in the
1920 nigel 77 .\" HREF
1921     \fBpcrepartial\fP
1922     .\"
1923     documentation.
1924     .
1925     .SS "Successful returns from \fBpcre_dfa_exec()\fP"
1926     .rs
1927     .sp
1928     When \fBpcre_dfa_exec()\fP succeeds, it may have matched more than one
1929     substring in the subject. Note, however, that all the matches from one run of
1930     the function start at the same point in the subject. The shorter matches are
1931     all initial substrings of the longer matches. For example, if the pattern
1932     .sp
1933     <.*>
1934     .sp
1935     is matched against the string
1936     .sp
1937     This is <something> <something else> <something further> no more
1938     .sp
1939     the three matched strings are
1940     .sp
1941     <something>
1942     <something> <something else>
1943     <something> <something else> <something further>
1944     .sp
1945     On success, the yield of the function is a number greater than zero, which is
1946     the number of matched substrings. The substrings themselves are returned in
1947     \fIovector\fP. Each string uses two elements; the first is the offset to the
1948 nigel 93 start, and the second is the offset to the end. In fact, all the strings have
1949     the same start offset. (Space could have been saved by giving this only once,
1950     but it was decided to retain some compatibility with the way \fBpcre_exec()\fP
1951     returns data, even though the meaning of the strings is different.)
1952 nigel 77 .P
1953     The strings are returned in reverse order of length; that is, the longest
1954     matching string is given first. If there were too many matches to fit into
1955     \fIovector\fP, the yield of the function is zero, and the vector is filled with
1956     the longest matches.
1957     .
1958     .SS "Error returns from \fBpcre_dfa_exec()\fP"
1959     .rs
1960     .sp
1961     The \fBpcre_dfa_exec()\fP function returns a negative number when it fails.
1962     Many of the errors are the same as for \fBpcre_exec()\fP, and these are
1963     described
1964     .\" HTML <a href="#errorlist">
1965     .\" </a>
1966     above.
1967     .\"
1968     There are in addition the following errors that are specific to
1969     \fBpcre_dfa_exec()\fP:
1970     .sp
1971     PCRE_ERROR_DFA_UITEM (-16)
1972     .sp
1973     This return is given if \fBpcre_dfa_exec()\fP encounters an item in the pattern
1974     that it does not support, for instance, the use of \eC or a back reference.
1975     .sp
1976     PCRE_ERROR_DFA_UCOND (-17)
1977     .sp
1978 nigel 93 This return is given if \fBpcre_dfa_exec()\fP encounters a condition item that
1979     uses a back reference for the condition, or a test for recursion in a specific
1980     group. These are not supported.
1981 nigel 77 .sp
1982     PCRE_ERROR_DFA_UMLIMIT (-18)
1983     .sp
1984     This return is given if \fBpcre_dfa_exec()\fP is called with an \fIextra\fP
1985     block that contains a setting of the \fImatch_limit\fP field. This is not
1986     supported (it is meaningless).
1987     .sp
1988     PCRE_ERROR_DFA_WSSIZE (-19)
1989     .sp
1990     This return is given if \fBpcre_dfa_exec()\fP runs out of space in the
1991     \fIworkspace\fP vector.
1992     .sp
1993     PCRE_ERROR_DFA_RECURSE (-20)
1994     .sp
1995     When a recursive subpattern is processed, the matching function calls itself
1996     recursively, using private vectors for \fIovector\fP and \fIworkspace\fP. This
1997     error is given if the output vector is not large enough. This should be
1998     extremely rare, as a vector of size 1000 is used.
1999 nigel 93 .
2000     .
2001     .SH "SEE ALSO"
2002     .rs
2003     .sp
2004     \fBpcrebuild\fP(3), \fBpcrecallout\fP(3), \fBpcrecpp(3)\fP(3),
2005     \fBpcrematching\fP(3), \fBpcrepartial\fP(3), \fBpcreposix\fP(3),
2006     \fBpcreprecompile\fP(3), \fBpcresample\fP(3), \fBpcrestack\fP(3).
2007 ph10 99 .
2008     .
2009     .SH AUTHOR
2010     .rs
2011     .sp
2012     .nf
2013     Philip Hazel
2014     University Computing Service
2015     Cambridge CB2 3QH, England.
2016     .fi
2017     .
2018     .
2019     .SH REVISION
2020     .rs
2021     .sp
2022     .nf
2023 ph10 442 Last updated: 11 September 2009
2024 ph10 376 Copyright (c) 1997-2009 University of Cambridge.
2025 ph10 99 .fi

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12