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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 428 - (hide annotations) (download)
Mon Aug 31 17:10:26 2009 UTC (3 years, 8 months ago) by ph10
File size: 86751 byte(s)
Further partial match change: add PCRE_PARTIAL_HARD and make more intuitive.

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