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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 518 - (hide annotations) (download)
Tue May 18 15:47:01 2010 UTC (3 years ago) by ph10
File size: 91832 byte(s)
Added PCRE_UCP and related stuff to make \w etc use Unicode properties.

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