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