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