| 1 |
nigel |
79 |
.TH PCREAPI 3 |
| 2 |
nigel |
63 |
.SH NAME |
| 3 |
|
|
PCRE - Perl-compatible regular expressions |
| 4 |
nigel |
75 |
.SH "PCRE NATIVE API" |
| 5 |
nigel |
63 |
.rs |
| 6 |
|
|
.sp |
| 7 |
|
|
.B #include <pcre.h> |
| 8 |
|
|
.PP |
| 9 |
|
|
.SM |
| 10 |
nigel |
75 |
.B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP, |
| 11 |
nigel |
63 |
.ti +5n |
| 12 |
nigel |
75 |
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
| 13 |
nigel |
63 |
.ti +5n |
| 14 |
nigel |
75 |
.B const unsigned char *\fItableptr\fP); |
| 15 |
nigel |
63 |
.PP |
| 16 |
nigel |
77 |
.B pcre *pcre_compile2(const char *\fIpattern\fP, int \fIoptions\fP, |
| 17 |
|
|
.ti +5n |
| 18 |
|
|
.B int *\fIerrorcodeptr\fP, |
| 19 |
|
|
.ti +5n |
| 20 |
|
|
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
| 21 |
|
|
.ti +5n |
| 22 |
|
|
.B const unsigned char *\fItableptr\fP); |
| 23 |
|
|
.PP |
| 24 |
nigel |
75 |
.B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP, |
| 25 |
nigel |
63 |
.ti +5n |
| 26 |
nigel |
75 |
.B const char **\fIerrptr\fP); |
| 27 |
nigel |
63 |
.PP |
| 28 |
nigel |
75 |
.B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 29 |
nigel |
63 |
.ti +5n |
| 30 |
nigel |
75 |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 31 |
nigel |
63 |
.ti +5n |
| 32 |
nigel |
75 |
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP); |
| 33 |
nigel |
63 |
.PP |
| 34 |
nigel |
77 |
.B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 35 |
|
|
.ti +5n |
| 36 |
|
|
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 37 |
|
|
.ti +5n |
| 38 |
|
|
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP, |
| 39 |
|
|
.ti +5n |
| 40 |
|
|
.B int *\fIworkspace\fP, int \fIwscount\fP); |
| 41 |
|
|
.PP |
| 42 |
nigel |
75 |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
| 43 |
nigel |
63 |
.ti +5n |
| 44 |
nigel |
75 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 45 |
nigel |
63 |
.ti +5n |
| 46 |
nigel |
75 |
.B int \fIstringcount\fP, const char *\fIstringname\fP, |
| 47 |
nigel |
63 |
.ti +5n |
| 48 |
nigel |
75 |
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
| 49 |
nigel |
63 |
.PP |
| 50 |
nigel |
75 |
.B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 51 |
nigel |
63 |
.ti +5n |
| 52 |
nigel |
75 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP, |
| 53 |
nigel |
63 |
.ti +5n |
| 54 |
nigel |
75 |
.B int \fIbuffersize\fP); |
| 55 |
nigel |
63 |
.PP |
| 56 |
nigel |
75 |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
| 57 |
nigel |
63 |
.ti +5n |
| 58 |
nigel |
75 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 59 |
nigel |
63 |
.ti +5n |
| 60 |
nigel |
75 |
.B int \fIstringcount\fP, const char *\fIstringname\fP, |
| 61 |
nigel |
63 |
.ti +5n |
| 62 |
nigel |
75 |
.B const char **\fIstringptr\fP); |
| 63 |
nigel |
63 |
.PP |
| 64 |
nigel |
75 |
.B int pcre_get_stringnumber(const pcre *\fIcode\fP, |
| 65 |
nigel |
63 |
.ti +5n |
| 66 |
nigel |
75 |
.B const char *\fIname\fP); |
| 67 |
nigel |
63 |
.PP |
| 68 |
nigel |
91 |
.B int pcre_get_stringtable_entries(const pcre *\fIcode\fP, |
| 69 |
|
|
.ti +5n |
| 70 |
|
|
.B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP); |
| 71 |
|
|
.PP |
| 72 |
nigel |
75 |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 73 |
nigel |
63 |
.ti +5n |
| 74 |
nigel |
75 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
| 75 |
nigel |
63 |
.ti +5n |
| 76 |
nigel |
75 |
.B const char **\fIstringptr\fP); |
| 77 |
nigel |
63 |
.PP |
| 78 |
nigel |
75 |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
| 79 |
nigel |
63 |
.ti +5n |
| 80 |
nigel |
75 |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
| 81 |
nigel |
63 |
.PP |
| 82 |
nigel |
75 |
.B void pcre_free_substring(const char *\fIstringptr\fP); |
| 83 |
nigel |
63 |
.PP |
| 84 |
nigel |
75 |
.B void pcre_free_substring_list(const char **\fIstringptr\fP); |
| 85 |
nigel |
63 |
.PP |
| 86 |
|
|
.B const unsigned char *pcre_maketables(void); |
| 87 |
|
|
.PP |
| 88 |
nigel |
75 |
.B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 89 |
nigel |
63 |
.ti +5n |
| 90 |
nigel |
75 |
.B int \fIwhat\fP, void *\fIwhere\fP); |
| 91 |
nigel |
63 |
.PP |
| 92 |
nigel |
75 |
.B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int |
| 93 |
|
|
.B *\fIfirstcharptr\fP); |
| 94 |
nigel |
63 |
.PP |
| 95 |
nigel |
77 |
.B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP); |
| 96 |
|
|
.PP |
| 97 |
nigel |
75 |
.B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); |
| 98 |
nigel |
63 |
.PP |
| 99 |
|
|
.B char *pcre_version(void); |
| 100 |
|
|
.PP |
| 101 |
|
|
.B void *(*pcre_malloc)(size_t); |
| 102 |
|
|
.PP |
| 103 |
|
|
.B void (*pcre_free)(void *); |
| 104 |
|
|
.PP |
| 105 |
nigel |
73 |
.B void *(*pcre_stack_malloc)(size_t); |
| 106 |
|
|
.PP |
| 107 |
|
|
.B void (*pcre_stack_free)(void *); |
| 108 |
|
|
.PP |
| 109 |
nigel |
63 |
.B int (*pcre_callout)(pcre_callout_block *); |
| 110 |
nigel |
75 |
. |
| 111 |
|
|
. |
| 112 |
|
|
.SH "PCRE API OVERVIEW" |
| 113 |
nigel |
63 |
.rs |
| 114 |
|
|
.sp |
| 115 |
nigel |
93 |
PCRE has its own native API, which is described in this document. There are |
| 116 |
|
|
also some wrapper functions that correspond to the POSIX regular expression |
| 117 |
nigel |
77 |
API. These are described in the |
| 118 |
nigel |
75 |
.\" HREF |
| 119 |
|
|
\fBpcreposix\fP |
| 120 |
|
|
.\" |
| 121 |
nigel |
77 |
documentation. Both of these APIs define a set of C function calls. A C++ |
| 122 |
|
|
wrapper is distributed with PCRE. It is documented in the |
| 123 |
|
|
.\" HREF |
| 124 |
|
|
\fBpcrecpp\fP |
| 125 |
|
|
.\" |
| 126 |
|
|
page. |
| 127 |
nigel |
75 |
.P |
| 128 |
nigel |
77 |
The native API C function prototypes are defined in the header file |
| 129 |
|
|
\fBpcre.h\fP, and on Unix systems the library itself is called \fBlibpcre\fP. |
| 130 |
|
|
It can normally be accessed by adding \fB-lpcre\fP to the command for linking |
| 131 |
|
|
an application that uses PCRE. The header file defines the macros PCRE_MAJOR |
| 132 |
|
|
and PCRE_MINOR to contain the major and minor release numbers for the library. |
| 133 |
nigel |
75 |
Applications can use these to include support for different releases of PCRE. |
| 134 |
|
|
.P |
| 135 |
nigel |
77 |
The functions \fBpcre_compile()\fP, \fBpcre_compile2()\fP, \fBpcre_study()\fP, |
| 136 |
|
|
and \fBpcre_exec()\fP are used for compiling and matching regular expressions |
| 137 |
|
|
in a Perl-compatible manner. A sample program that demonstrates the simplest |
| 138 |
|
|
way of using them is provided in the file called \fIpcredemo.c\fP in the source |
| 139 |
|
|
distribution. The |
| 140 |
nigel |
75 |
.\" HREF |
| 141 |
|
|
\fBpcresample\fP |
| 142 |
|
|
.\" |
| 143 |
|
|
documentation describes how to run it. |
| 144 |
|
|
.P |
| 145 |
nigel |
77 |
A second matching function, \fBpcre_dfa_exec()\fP, which is not |
| 146 |
|
|
Perl-compatible, is also provided. This uses a different algorithm for the |
| 147 |
nigel |
91 |
matching. The alternative algorithm finds all possible matches (at a given |
| 148 |
nigel |
93 |
point in the subject), and scans the subject just once. However, this algorithm |
| 149 |
|
|
does not return captured substrings. A description of the two matching |
| 150 |
|
|
algorithms and their advantages and disadvantages is given in the |
| 151 |
nigel |
77 |
.\" HREF |
| 152 |
|
|
\fBpcrematching\fP |
| 153 |
|
|
.\" |
| 154 |
|
|
documentation. |
| 155 |
|
|
.P |
| 156 |
nigel |
75 |
In addition to the main compiling and matching functions, there are convenience |
| 157 |
nigel |
77 |
functions for extracting captured substrings from a subject string that is |
| 158 |
|
|
matched by \fBpcre_exec()\fP. They are: |
| 159 |
nigel |
75 |
.sp |
| 160 |
|
|
\fBpcre_copy_substring()\fP |
| 161 |
|
|
\fBpcre_copy_named_substring()\fP |
| 162 |
|
|
\fBpcre_get_substring()\fP |
| 163 |
|
|
\fBpcre_get_named_substring()\fP |
| 164 |
|
|
\fBpcre_get_substring_list()\fP |
| 165 |
|
|
\fBpcre_get_stringnumber()\fP |
| 166 |
nigel |
91 |
\fBpcre_get_stringtable_entries()\fP |
| 167 |
nigel |
75 |
.sp |
| 168 |
|
|
\fBpcre_free_substring()\fP and \fBpcre_free_substring_list()\fP are also |
| 169 |
nigel |
63 |
provided, to free the memory used for extracted strings. |
| 170 |
nigel |
75 |
.P |
| 171 |
|
|
The function \fBpcre_maketables()\fP is used to build a set of character tables |
| 172 |
nigel |
77 |
in the current locale for passing to \fBpcre_compile()\fP, \fBpcre_exec()\fP, |
| 173 |
|
|
or \fBpcre_dfa_exec()\fP. This is an optional facility that is provided for |
| 174 |
|
|
specialist use. Most commonly, no special tables are passed, in which case |
| 175 |
|
|
internal tables that are generated when PCRE is built are used. |
| 176 |
nigel |
75 |
.P |
| 177 |
|
|
The function \fBpcre_fullinfo()\fP is used to find out information about a |
| 178 |
|
|
compiled pattern; \fBpcre_info()\fP is an obsolete version that returns only |
| 179 |
nigel |
63 |
some of the available information, but is retained for backwards compatibility. |
| 180 |
nigel |
75 |
The function \fBpcre_version()\fP returns a pointer to a string containing the |
| 181 |
nigel |
63 |
version of PCRE and its date of release. |
| 182 |
nigel |
75 |
.P |
| 183 |
nigel |
77 |
The function \fBpcre_refcount()\fP maintains a reference count in a data block |
| 184 |
|
|
containing a compiled pattern. This is provided for the benefit of |
| 185 |
|
|
object-oriented applications. |
| 186 |
|
|
.P |
| 187 |
nigel |
75 |
The global variables \fBpcre_malloc\fP and \fBpcre_free\fP initially contain |
| 188 |
|
|
the entry points of the standard \fBmalloc()\fP and \fBfree()\fP functions, |
| 189 |
nigel |
63 |
respectively. PCRE calls the memory management functions via these variables, |
| 190 |
|
|
so a calling program can replace them if it wishes to intercept the calls. This |
| 191 |
|
|
should be done before calling any PCRE functions. |
| 192 |
nigel |
75 |
.P |
| 193 |
|
|
The global variables \fBpcre_stack_malloc\fP and \fBpcre_stack_free\fP are also |
| 194 |
nigel |
73 |
indirections to memory management functions. These special functions are used |
| 195 |
|
|
only when PCRE is compiled to use the heap for remembering data, instead of |
| 196 |
nigel |
91 |
recursive function calls, when running the \fBpcre_exec()\fP function. See the |
| 197 |
|
|
.\" HREF |
| 198 |
|
|
\fBpcrebuild\fP |
| 199 |
|
|
.\" |
| 200 |
|
|
documentation for details of how to do this. It is a non-standard way of |
| 201 |
|
|
building PCRE, for use in environments that have limited stacks. Because of the |
| 202 |
|
|
greater use of memory management, it runs more slowly. Separate functions are |
| 203 |
|
|
provided so that special-purpose external code can be used for this case. When |
| 204 |
|
|
used, these functions are always called in a stack-like manner (last obtained, |
| 205 |
|
|
first freed), and always for memory blocks of the same size. There is a |
| 206 |
|
|
discussion about PCRE's stack usage in the |
| 207 |
|
|
.\" HREF |
| 208 |
|
|
\fBpcrestack\fP |
| 209 |
|
|
.\" |
| 210 |
|
|
documentation. |
| 211 |
nigel |
75 |
.P |
| 212 |
|
|
The global variable \fBpcre_callout\fP initially contains NULL. It can be set |
| 213 |
nigel |
63 |
by the caller to a "callout" function, which PCRE will then call at specified |
| 214 |
nigel |
75 |
points during a matching operation. Details are given in the |
| 215 |
|
|
.\" HREF |
| 216 |
|
|
\fBpcrecallout\fP |
| 217 |
|
|
.\" |
| 218 |
nigel |
63 |
documentation. |
| 219 |
nigel |
75 |
. |
| 220 |
|
|
. |
| 221 |
nigel |
91 |
.SH NEWLINES |
| 222 |
nigel |
93 |
.rs |
| 223 |
nigel |
91 |
.sp |
| 224 |
ph10 |
149 |
PCRE supports five different conventions for indicating line breaks in |
| 225 |
nigel |
93 |
strings: a single CR (carriage return) character, a single LF (linefeed) |
| 226 |
ph10 |
149 |
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 |
nigel |
93 |
.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 |
nigel |
91 |
In the PCRE documentation the word "newline" is used to mean "the character or |
| 239 |
nigel |
93 |
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 |
nigel |
91 |
. |
| 246 |
|
|
. |
| 247 |
nigel |
63 |
.SH MULTITHREADING |
| 248 |
|
|
.rs |
| 249 |
|
|
.sp |
| 250 |
|
|
The PCRE functions can be used in multi-threading applications, with the |
| 251 |
nigel |
75 |
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 |
nigel |
63 |
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 |
nigel |
75 |
. |
| 258 |
|
|
. |
| 259 |
|
|
.SH "SAVING PRECOMPILED PATTERNS FOR LATER USE" |
| 260 |
nigel |
63 |
.rs |
| 261 |
|
|
.sp |
| 262 |
nigel |
75 |
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 |
ph10 |
155 |
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 |
nigel |
75 |
. |
| 272 |
|
|
. |
| 273 |
|
|
.SH "CHECKING BUILD-TIME OPTIONS" |
| 274 |
|
|
.rs |
| 275 |
|
|
.sp |
| 276 |
|
|
.B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); |
| 277 |
nigel |
63 |
.PP |
| 278 |
nigel |
75 |
The function \fBpcre_config()\fP makes it possible for a PCRE client to |
| 279 |
nigel |
63 |
discover which optional features have been compiled into the PCRE library. The |
| 280 |
|
|
.\" HREF |
| 281 |
nigel |
75 |
\fBpcrebuild\fP |
| 282 |
nigel |
63 |
.\" |
| 283 |
|
|
documentation has more details about these optional features. |
| 284 |
nigel |
75 |
.P |
| 285 |
|
|
The first argument for \fBpcre_config()\fP is an integer, specifying which |
| 286 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 289 |
nigel |
63 |
PCRE_CONFIG_UTF8 |
| 290 |
nigel |
75 |
.sp |
| 291 |
nigel |
63 |
The output is an integer that is set to one if UTF-8 support is available; |
| 292 |
|
|
otherwise it is set to zero. |
| 293 |
nigel |
75 |
.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 |
nigel |
63 |
PCRE_CONFIG_NEWLINE |
| 300 |
nigel |
75 |
.sp |
| 301 |
nigel |
91 |
The output is an integer whose value specifies the default character sequence |
| 302 |
nigel |
93 |
that is recognized as meaning "newline". The four values that are supported |
| 303 |
ph10 |
149 |
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 |
nigel |
75 |
.sp |
| 306 |
nigel |
63 |
PCRE_CONFIG_LINK_SIZE |
| 307 |
nigel |
75 |
.sp |
| 308 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 314 |
nigel |
63 |
PCRE_CONFIG_POSIX_MALLOC_THRESHOLD |
| 315 |
nigel |
75 |
.sp |
| 316 |
nigel |
63 |
The output is an integer that contains the threshold above which the POSIX |
| 317 |
nigel |
75 |
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 |
nigel |
63 |
PCRE_CONFIG_MATCH_LIMIT |
| 325 |
nigel |
75 |
.sp |
| 326 |
nigel |
63 |
The output is an integer that gives the default limit for the number of |
| 327 |
nigel |
75 |
internal matching function calls in a \fBpcre_exec()\fP execution. Further |
| 328 |
|
|
details are given with \fBpcre_exec()\fP below. |
| 329 |
|
|
.sp |
| 330 |
nigel |
87 |
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 |
nigel |
73 |
PCRE_CONFIG_STACKRECURSE |
| 337 |
nigel |
75 |
.sp |
| 338 |
nigel |
77 |
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 |
nigel |
75 |
. |
| 346 |
|
|
. |
| 347 |
|
|
.SH "COMPILING A PATTERN" |
| 348 |
nigel |
63 |
.rs |
| 349 |
|
|
.sp |
| 350 |
nigel |
75 |
.B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP, |
| 351 |
nigel |
63 |
.ti +5n |
| 352 |
nigel |
75 |
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
| 353 |
nigel |
63 |
.ti +5n |
| 354 |
nigel |
75 |
.B const unsigned char *\fItableptr\fP); |
| 355 |
nigel |
77 |
.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 |
nigel |
75 |
.P |
| 364 |
nigel |
77 |
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 |
nigel |
75 |
.P |
| 369 |
nigel |
77 |
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 |
nigel |
91 |
caller to free the memory (via \fBpcre_free\fP) when it is no longer required. |
| 375 |
nigel |
77 |
.P |
| 376 |
nigel |
63 |
Although the compiled code of a PCRE regex is relocatable, that is, it does not |
| 377 |
nigel |
75 |
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 |
nigel |
93 |
The \fIoptions\fP argument contains various bit settings that affect the |
| 382 |
nigel |
75 |
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 |
nigel |
91 |
PCRE_ANCHORED and PCRE_NEWLINE_\fIxxx\fP options can be set at the time of |
| 392 |
|
|
matching as well as at compile time. |
| 393 |
nigel |
75 |
.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 |
nigel |
87 |
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 |
nigel |
75 |
\fIerroffset\fP, which must not be NULL. If it is, an immediate error is given. |
| 401 |
|
|
.P |
| 402 |
nigel |
77 |
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 |
nigel |
75 |
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 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 426 |
|
|
The following names for option bits are defined in the \fBpcre.h\fP header |
| 427 |
|
|
file: |
| 428 |
|
|
.sp |
| 429 |
nigel |
63 |
PCRE_ANCHORED |
| 430 |
nigel |
75 |
.sp |
| 431 |
nigel |
63 |
If this bit is set, the pattern is forced to be "anchored", that is, it is |
| 432 |
nigel |
75 |
constrained to match only at the first matching point in the string that is |
| 433 |
nigel |
63 |
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 |
nigel |
75 |
.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 |
nigel |
63 |
PCRE_CASELESS |
| 448 |
nigel |
75 |
.sp |
| 449 |
nigel |
63 |
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 |
nigel |
77 |
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 |
nigel |
75 |
.sp |
| 459 |
nigel |
63 |
PCRE_DOLLAR_ENDONLY |
| 460 |
nigel |
75 |
.sp |
| 461 |
nigel |
63 |
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 |
nigel |
91 |
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 |
nigel |
75 |
.sp |
| 468 |
nigel |
63 |
PCRE_DOTALL |
| 469 |
nigel |
75 |
.sp |
| 470 |
nigel |
63 |
If this bit is set, a dot metacharater in the pattern matches all characters, |
| 471 |
nigel |
91 |
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 |
nigel |
93 |
negative class such as [^a] always matches newline characters, independent of |
| 475 |
|
|
the setting of this option. |
| 476 |
nigel |
75 |
.sp |
| 477 |
nigel |
91 |
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 |
nigel |
63 |
PCRE_EXTENDED |
| 489 |
nigel |
75 |
.sp |
| 490 |
nigel |
63 |
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 |
nigel |
91 |
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 |
nigel |
75 |
.P |
| 497 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 502 |
nigel |
63 |
PCRE_EXTRA |
| 503 |
nigel |
75 |
.sp |
| 504 |
nigel |
63 |
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 |
nigel |
91 |
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 |
nigel |
75 |
.sp |
| 513 |
nigel |
77 |
PCRE_FIRSTLINE |
| 514 |
|
|
.sp |
| 515 |
|
|
If this option is set, an unanchored pattern is required to match before or at |
| 516 |
nigel |
91 |
the first newline in the subject string, though the matched text may continue |
| 517 |
|
|
over the newline. |
| 518 |
nigel |
77 |
.sp |
| 519 |
nigel |
63 |
PCRE_MULTILINE |
| 520 |
nigel |
75 |
.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 |
nigel |
63 |
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 |
nigel |
75 |
.P |
| 528 |
nigel |
63 |
When PCRE_MULTILINE it is set, the "start of line" and "end of line" constructs |
| 529 |
nigel |
91 |
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 |
nigel |
63 |
occurrences of ^ or $ in a pattern, setting PCRE_MULTILINE has no effect. |
| 534 |
nigel |
75 |
.sp |
| 535 |
nigel |
91 |
PCRE_NEWLINE_CR |
| 536 |
|
|
PCRE_NEWLINE_LF |
| 537 |
|
|
PCRE_NEWLINE_CRLF |
| 538 |
ph10 |
150 |
PCRE_NEWLINE_ANYCRLF |
| 539 |
nigel |
93 |
PCRE_NEWLINE_ANY |
| 540 |
nigel |
91 |
.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 |
nigel |
93 |
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 |
ph10 |
149 |
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 |
nigel |
91 |
.P |
| 553 |
nigel |
93 |
The newline setting in the options word uses three bits that are treated |
| 554 |
ph10 |
149 |
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 |
nigel |
93 |
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 |
ph10 |
149 |
other combinations may yield unused numbers and cause an error. |
| 559 |
nigel |
93 |
.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 |
nigel |
91 |
.sp |
| 570 |
nigel |
63 |
PCRE_NO_AUTO_CAPTURE |
| 571 |
nigel |
75 |
.sp |
| 572 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 578 |
nigel |
63 |
PCRE_UNGREEDY |
| 579 |
nigel |
75 |
.sp |
| 580 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 584 |
nigel |
63 |
PCRE_UTF8 |
| 585 |
nigel |
75 |
.sp |
| 586 |
nigel |
63 |
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 |
nigel |
75 |
available only when PCRE is built to include UTF-8 support. If not, the use |
| 589 |
nigel |
63 |
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 |
nigel |
75 |
\fBpcre\fP |
| 598 |
nigel |
63 |
.\" |
| 599 |
|
|
page. |
| 600 |
nigel |
75 |
.sp |
| 601 |
nigel |
71 |
PCRE_NO_UTF8_CHECK |
| 602 |
nigel |
75 |
.sp |
| 603 |
nigel |
71 |
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 |
nigel |
75 |
\fBpcre_compile()\fP returns an error. If you already know that your pattern is |
| 606 |
nigel |
71 |
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 |
nigel |
77 |
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 |
nigel |
75 |
. |
| 613 |
|
|
. |
| 614 |
nigel |
77 |
.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 |
nigel |
93 |
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 |
nigel |
77 |
.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 |
nigel |
93 |
10 [this code is not in use] |
| 633 |
nigel |
77 |
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 |
nigel |
93 |
19 [this code is not in use] |
| 642 |
nigel |
77 |
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 |
nigel |
91 |
26 malformed number or name after (?( |
| 649 |
nigel |
77 |
27 conditional group contains more than two branches |
| 650 |
|
|
28 assertion expected after (?( |
| 651 |
ph10 |
181 |
29 (?R or (?[+-]digits must be followed by ) |
| 652 |
nigel |
77 |
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 |
nigel |
93 |
33 [this code is not in use] |
| 656 |
nigel |
77 |
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 |
nigel |
93 |
42 syntax error in subpattern name (missing terminator) |
| 665 |
nigel |
91 |
43 two named subpatterns have the same name |
| 666 |
nigel |
77 |
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 |
nigel |
91 |
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 |
nigel |
93 |
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 |
ph10 |
182 |
57 \eg is not followed by a braced name or an optionally braced |
| 680 |
ph10 |
181 |
non-zero number |
| 681 |
|
|
58 (?+ or (?- or (?(+ or (?(- must be followed by a non-zero number |
| 682 |
nigel |
77 |
. |
| 683 |
|
|
. |
| 684 |
nigel |
75 |
.SH "STUDYING A PATTERN" |
| 685 |
nigel |
63 |
.rs |
| 686 |
|
|
.sp |
| 687 |
nigel |
77 |
.B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP |
| 688 |
nigel |
63 |
.ti +5n |
| 689 |
nigel |
75 |
.B const char **\fIerrptr\fP); |
| 690 |
nigel |
63 |
.PP |
| 691 |
nigel |
75 |
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 |
nigel |
63 |
fields that can be set by the caller before the block is passed; these are |
| 702 |
nigel |
75 |
described |
| 703 |
|
|
.\" HTML <a href="#extradata"> |
| 704 |
|
|
.\" </a> |
| 705 |
|
|
below |
| 706 |
|
|
.\" |
| 707 |
|
|
in the section on matching a pattern. |
| 708 |
|
|
.P |
| 709 |
nigel |
77 |
If studying the pattern does not produce any additional information |
| 710 |
nigel |
75 |
\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 |
nigel |
63 |
studying succeeds (even if no data is returned), the variable it points to is |
| 719 |
nigel |
87 |
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 |
nigel |
75 |
.P |
| 724 |
|
|
This is a typical call to \fBpcre_study\fP(): |
| 725 |
|
|
.sp |
| 726 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 732 |
nigel |
63 |
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 |
nigel |
75 |
bytes is created. |
| 735 |
|
|
. |
| 736 |
|
|
. |
| 737 |
nigel |
63 |
.\" HTML <a name="localesupport"></a> |
| 738 |
nigel |
75 |
.SH "LOCALE SUPPORT" |
| 739 |
nigel |
63 |
.rs |
| 740 |
|
|
.sp |
| 741 |
ph10 |
139 |
PCRE handles caseless matching, and determines whether characters are letters, |
| 742 |
nigel |
75 |
digits, or whatever, by reference to a set of tables, indexed by character |
| 743 |
nigel |
77 |
value. When running in UTF-8 mode, this applies only to characters with codes |
| 744 |
nigel |
75 |
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 |
ph10 |
142 |
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 |
ph10 |
139 |
Unicode, or use locales, but not try to mix the two. |
| 749 |
nigel |
75 |
.P |
| 750 |
ph10 |
139 |
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 |
ph10 |
142 |
Normally, the internal tables recognize only ASCII characters. However, when |
| 753 |
ph10 |
139 |
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 |
nigel |
75 |
.P |
| 756 |
ph10 |
139 |
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 |
nigel |
75 |
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 |
nigel |
63 |
tables = pcre_maketables(); |
| 770 |
|
|
re = pcre_compile(..., tables); |
| 771 |
nigel |
75 |
.sp |
| 772 |
ph10 |
142 |
The locale name "fr_FR" is used on Linux and other Unix-like systems; if you |
| 773 |
ph10 |
139 |
are using Windows, the name for the French locale is "french". |
| 774 |
|
|
.P |
| 775 |
nigel |
75 |
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 |
nigel |
63 |
.rs |
| 795 |
|
|
.sp |
| 796 |
nigel |
75 |
.B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 797 |
nigel |
63 |
.ti +5n |
| 798 |
nigel |
75 |
.B int \fIwhat\fP, void *\fIwhere\fP); |
| 799 |
nigel |
63 |
.PP |
| 800 |
nigel |
75 |
The \fBpcre_fullinfo()\fP function returns information about a compiled |
| 801 |
|
|
pattern. It replaces the obsolete \fBpcre_info()\fP function, which is |
| 802 |
nigel |
63 |
nevertheless retained for backwards compability (and is documented below). |
| 803 |
nigel |
75 |
.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 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 811 |
|
|
PCRE_ERROR_NULL the argument \fIcode\fP was NULL |
| 812 |
|
|
the argument \fIwhere\fP was NULL |
| 813 |
nigel |
63 |
PCRE_ERROR_BADMAGIC the "magic number" was not found |
| 814 |
nigel |
75 |
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 |
nigel |
63 |
int rc; |
| 821 |
nigel |
91 |
size_t length; |
| 822 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 828 |
|
|
The possible values for the third argument are defined in \fBpcre.h\fP, and are |
| 829 |
nigel |
63 |
as follows: |
| 830 |
nigel |
75 |
.sp |
| 831 |
nigel |
63 |
PCRE_INFO_BACKREFMAX |
| 832 |
nigel |
75 |
.sp |
| 833 |
nigel |
63 |
Return the number of the highest back reference in the pattern. The fourth |
| 834 |
nigel |
75 |
argument should point to an \fBint\fP variable. Zero is returned if there are |
| 835 |
nigel |
63 |
no back references. |
| 836 |
nigel |
75 |
.sp |
| 837 |
nigel |
63 |
PCRE_INFO_CAPTURECOUNT |
| 838 |
nigel |
75 |
.sp |
| 839 |
nigel |
63 |
Return the number of capturing subpatterns in the pattern. The fourth argument |
| 840 |
nigel |
75 |
should point to an \fBint\fP variable. |
| 841 |
|
|
.sp |
| 842 |
nigel |
77 |
PCRE_INFO_DEFAULT_TABLES |
| 843 |
nigel |
75 |
.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 |
nigel |
63 |
PCRE_INFO_FIRSTBYTE |
| 851 |
nigel |
75 |
.sp |
| 852 |
nigel |
63 |
Return information about the first byte of any matched string, for a |
| 853 |
nigel |
91 |
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 |
nigel |
75 |
.P |
| 857 |
|
|
If there is a fixed first byte, for example, from a pattern such as |
| 858 |
nigel |
93 |
(cat|cow|coyote), its value is returned. Otherwise, if either |
| 859 |
nigel |
75 |
.sp |
| 860 |
nigel |
63 |
(a) the pattern was compiled with the PCRE_MULTILINE option, and every branch |
| 861 |
|
|
starts with "^", or |
| 862 |
nigel |
75 |
.sp |
| 863 |
nigel |
63 |
(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 |
nigel |
75 |
.sp |
| 866 |
nigel |
63 |
-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 |
nigel |
75 |
.sp |
| 870 |
nigel |
63 |
PCRE_INFO_FIRSTTABLE |
| 871 |
nigel |
75 |
.sp |
| 872 |
nigel |
63 |
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 |
nigel |
75 |
fourth argument should point to an \fBunsigned char *\fP variable. |
| 876 |
|
|
.sp |
| 877 |
ph10 |
169 |
PCRE_INFO_JCHANGED |
| 878 |
|
|
.sp |
| 879 |
ph10 |
172 |
Return 1 if the (?J) option setting is used in the pattern, otherwise 0. The |
| 880 |
ph10 |
169 |
fourth argument should point to an \fBint\fP variable. The (?J) internal option |
| 881 |
ph10 |
181 |
setting changes the local PCRE_DUPNAMES option. |
| 882 |
ph10 |
169 |
.sp |
| 883 |
nigel |
63 |
PCRE_INFO_LASTLITERAL |
| 884 |
nigel |
75 |
.sp |
| 885 |
nigel |
65 |
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 |
nigel |
75 |
argument should point to an \fBint\fP variable. If there is no such byte, -1 is |
| 888 |
nigel |
65 |
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 |
nigel |
75 |
/^a\ed+z\ed+/ the returned value is "z", but for /^a\edz\ed/ the returned value |
| 891 |
nigel |
65 |
is -1. |
| 892 |
nigel |
75 |
.sp |
| 893 |
nigel |
63 |
PCRE_INFO_NAMECOUNT |
| 894 |
|
|
PCRE_INFO_NAMEENTRYSIZE |
| 895 |
|
|
PCRE_INFO_NAMETABLE |
| 896 |
nigel |
75 |
.sp |
| 897 |
nigel |
63 |
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 |
nigel |
91 |
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 |
nigel |
75 |
.P |
| 907 |
nigel |
63 |
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 |
nigel |
75 |
entry; both of these return an \fBint\fP value. The entry size depends on the |
| 910 |
nigel |
63 |
length of the longest name. PCRE_INFO_NAMETABLE returns a pointer to the first |
| 911 |
nigel |
75 |
entry of the table (a pointer to \fBchar\fP). The first two bytes of each entry |
| 912 |
nigel |
63 |
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 |
nigel |
91 |
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 |
nigel |
63 |
PCRE_EXTENDED is set, so white space - including newlines - is ignored): |
| 917 |
nigel |
75 |
.sp |
| 918 |
|
|
.\" JOIN |
| 919 |
nigel |
93 |
(?<date> (?<year>(\ed\ed)?\ed\ed) - |
| 920 |
|
|
(?<month>\ed\ed) - (?<day>\ed\ed) ) |
| 921 |
nigel |
75 |
.sp |
| 922 |
nigel |
63 |
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 |
nigel |
75 |
bytes shows in hexadecimal, and undefined bytes shown as ??: |
| 925 |
|
|
.sp |
| 926 |
nigel |
63 |
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 |
nigel |
75 |
.sp |
| 931 |
|
|
When writing code to extract data from named subpatterns using the |
| 932 |
nigel |
91 |
name-to-number map, remember that the length of the entries is likely to be |
| 933 |
nigel |
75 |
different for each compiled pattern. |
| 934 |
|
|
.sp |
| 935 |
ph10 |
169 |
PCRE_INFO_OKPARTIAL |
| 936 |
|
|
.sp |
| 937 |
ph10 |
172 |
Return 1 if the pattern can be used for partial matching, otherwise 0. The |
| 938 |
ph10 |
169 |
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 |
nigel |
63 |
PCRE_INFO_OPTIONS |
| 946 |
nigel |
75 |
.sp |
| 947 |
nigel |
63 |
Return a copy of the options with which the pattern was compiled. The fourth |
| 948 |
nigel |
75 |
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 |
ph10 |
196 |
top-level option settings at the start of the pattern itself. In other words, |
| 951 |
|
|
they are the options that will be in force when matching starts. For example, |
| 952 |
|
|
if the pattern /(?im)abc(?-i)d/ is compiled with the PCRE_EXTENDED option, the |
| 953 |
|
|
result is PCRE_CASELESS, PCRE_MULTILINE, and PCRE_EXTENDED. |
| 954 |
nigel |
75 |
.P |
| 955 |
nigel |
63 |
A pattern is automatically anchored by PCRE if all of its top-level |
| 956 |
|
|
alternatives begin with one of the following: |
| 957 |
nigel |
75 |
.sp |
| 958 |
nigel |
63 |
^ unless PCRE_MULTILINE is set |
| 959 |
nigel |
75 |
\eA always |
| 960 |
|
|
\eG always |
| 961 |
|
|
.\" JOIN |
| 962 |
nigel |
63 |
.* if PCRE_DOTALL is set and there are no back |
| 963 |
|
|
references to the subpattern in which .* appears |
| 964 |
nigel |
75 |
.sp |
| 965 |
nigel |
63 |
For such patterns, the PCRE_ANCHORED bit is set in the options returned by |
| 966 |
nigel |
75 |
\fBpcre_fullinfo()\fP. |
| 967 |
|
|
.sp |
| 968 |
nigel |
63 |
PCRE_INFO_SIZE |
| 969 |
nigel |
75 |
.sp |
| 970 |
nigel |
63 |
Return the size of the compiled pattern, that is, the value that was passed as |
| 971 |
nigel |
75 |
the argument to \fBpcre_malloc()\fP when PCRE was getting memory in which to |
| 972 |
|
|
place the compiled data. The fourth argument should point to a \fBsize_t\fP |
| 973 |
nigel |
63 |
variable. |
| 974 |
nigel |
75 |
.sp |
| 975 |
nigel |
63 |
PCRE_INFO_STUDYSIZE |
| 976 |
nigel |
75 |
.sp |
| 977 |
|
|
Return the size of the data block pointed to by the \fIstudy_data\fP field in |
| 978 |
|
|
a \fBpcre_extra\fP block. That is, it is the value that was passed to |
| 979 |
|
|
\fBpcre_malloc()\fP when PCRE was getting memory into which to place the data |
| 980 |
|
|
created by \fBpcre_study()\fP. The fourth argument should point to a |
| 981 |
|
|
\fBsize_t\fP variable. |
| 982 |
|
|
. |
| 983 |
|
|
. |
| 984 |
|
|
.SH "OBSOLETE INFO FUNCTION" |
| 985 |
nigel |
63 |
.rs |
| 986 |
|
|
.sp |
| 987 |
nigel |
75 |
.B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int |
| 988 |
|
|
.B *\fIfirstcharptr\fP); |
| 989 |
nigel |
63 |
.PP |
| 990 |
nigel |
75 |
The \fBpcre_info()\fP function is now obsolete because its interface is too |
| 991 |
nigel |
63 |
restrictive to return all the available data about a compiled pattern. New |
| 992 |
nigel |
75 |
programs should use \fBpcre_fullinfo()\fP instead. The yield of |
| 993 |
|
|
\fBpcre_info()\fP is the number of capturing subpatterns, or one of the |
| 994 |
nigel |
63 |
following negative numbers: |
| 995 |
nigel |
75 |
.sp |
| 996 |
|
|
PCRE_ERROR_NULL the argument \fIcode\fP was NULL |
| 997 |
nigel |
63 |
PCRE_ERROR_BADMAGIC the "magic number" was not found |
| 998 |
nigel |
75 |
.sp |
| 999 |
|
|
If the \fIoptptr\fP argument is not NULL, a copy of the options with which the |
| 1000 |
nigel |
63 |
pattern was compiled is placed in the integer it points to (see |
| 1001 |
|
|
PCRE_INFO_OPTIONS above). |
| 1002 |
nigel |
75 |
.P |
| 1003 |
|
|
If the pattern is not anchored and the \fIfirstcharptr\fP argument is not NULL, |
| 1004 |
nigel |
63 |
it is used to pass back information about the first character of any matched |
| 1005 |
|
|
string (see PCRE_INFO_FIRSTBYTE above). |
| 1006 |
nigel |
75 |
. |
| 1007 |
|
|
. |
| 1008 |
nigel |
77 |
.SH "REFERENCE COUNTS" |
| 1009 |
nigel |
63 |
.rs |
| 1010 |
|
|
.sp |
| 1011 |
nigel |
77 |
.B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP); |
| 1012 |
|
|
.PP |
| 1013 |
|
|
The \fBpcre_refcount()\fP function is used to maintain a reference count in the |
| 1014 |
|
|
data block that contains a compiled pattern. It is provided for the benefit of |
| 1015 |
|
|
applications that operate in an object-oriented manner, where different parts |
| 1016 |
|
|
of the application may be using the same compiled pattern, but you want to free |
| 1017 |
|
|
the block when they are all done. |
| 1018 |
|
|
.P |
| 1019 |
|
|
When a pattern is compiled, the reference count field is initialized to zero. |
| 1020 |
|
|
It is changed only by calling this function, whose action is to add the |
| 1021 |
|
|
\fIadjust\fP value (which may be positive or negative) to it. The yield of the |
| 1022 |
|
|
function is the new value. However, the value of the count is constrained to |
| 1023 |
|
|
lie between 0 and 65535, inclusive. If the new value is outside these limits, |
| 1024 |
|
|
it is forced to the appropriate limit value. |
| 1025 |
|
|
.P |
| 1026 |
|
|
Except when it is zero, the reference count is not correctly preserved if a |
| 1027 |
|
|
pattern is compiled on one host and then transferred to a host whose byte-order |
| 1028 |
|
|
is different. (This seems a highly unlikely scenario.) |
| 1029 |
|
|
. |
| 1030 |
|
|
. |
| 1031 |
|
|
.SH "MATCHING A PATTERN: THE TRADITIONAL FUNCTION" |
| 1032 |
|
|
.rs |
| 1033 |
|
|
.sp |
| 1034 |
nigel |
75 |
.B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 1035 |
nigel |
63 |
.ti +5n |
| 1036 |
nigel |
75 |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 1037 |
nigel |
63 |
.ti +5n |
| 1038 |
nigel |
75 |
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP); |
| 1039 |
|
|
.P |
| 1040 |
|
|
The function \fBpcre_exec()\fP is called to match a subject string against a |
| 1041 |
|
|
compiled pattern, which is passed in the \fIcode\fP argument. If the |
| 1042 |
nigel |
63 |
pattern has been studied, the result of the study should be passed in the |
| 1043 |
nigel |
77 |
\fIextra\fP argument. This function is the main matching facility of the |
| 1044 |
|
|
library, and it operates in a Perl-like manner. For specialist use there is |
| 1045 |
|
|
also an alternative matching function, which is described |
| 1046 |
|
|
.\" HTML <a href="#dfamatch"> |
| 1047 |
|
|
.\" </a> |
| 1048 |
|
|
below |
| 1049 |
|
|
.\" |
| 1050 |
|
|
in the section about the \fBpcre_dfa_exec()\fP function. |
| 1051 |
nigel |
75 |
.P |
| 1052 |
|
|
In most applications, the pattern will have been compiled (and optionally |
| 1053 |
|
|
studied) in the same process that calls \fBpcre_exec()\fP. However, it is |
| 1054 |
|
|
possible to save compiled patterns and study data, and then use them later |
| 1055 |
|
|
in different processes, possibly even on different hosts. For a discussion |
| 1056 |
|
|
about this, see the |
| 1057 |
|
|
.\" HREF |
| 1058 |
|
|
\fBpcreprecompile\fP |
| 1059 |
|
|
.\" |
| 1060 |
|
|
documentation. |
| 1061 |
|
|
.P |
| 1062 |
|
|
Here is an example of a simple call to \fBpcre_exec()\fP: |
| 1063 |
|
|
.sp |
| 1064 |
nigel |
63 |
int rc; |
| 1065 |
|
|
int ovector[30]; |
| 1066 |
|
|
rc = pcre_exec( |
| 1067 |
|
|
re, /* result of pcre_compile() */ |
| 1068 |
|
|
NULL, /* we didn't study the pattern */ |
| 1069 |
|
|
"some string", /* the subject string */ |
| 1070 |
|
|
11, /* the length of the subject string */ |
| 1071 |
|
|
0, /* start at offset 0 in the subject */ |
| 1072 |
|
|
0, /* default options */ |
| 1073 |
nigel |
75 |
ovector, /* vector of integers for substring information */ |
| 1074 |
nigel |
77 |
30); /* number of elements (NOT size in bytes) */ |
| 1075 |
nigel |
75 |
. |
| 1076 |
|
|
.\" HTML <a name="extradata"></a> |
| 1077 |
|
|
.SS "Extra data for \fBpcre_exec()\fR" |
| 1078 |
|
|
.rs |
| 1079 |
|
|
.sp |
| 1080 |
|
|
If the \fIextra\fP argument is not NULL, it must point to a \fBpcre_extra\fP |
| 1081 |
|
|
data block. The \fBpcre_study()\fP function returns such a block (when it |
| 1082 |
nigel |
63 |
doesn't return NULL), but you can also create one for yourself, and pass |
| 1083 |
nigel |
87 |
additional information in it. The \fBpcre_extra\fP block contains the following |
| 1084 |
|
|
fields (not necessarily in this order): |
| 1085 |
nigel |
75 |
.sp |
| 1086 |
|
|
unsigned long int \fIflags\fP; |
| 1087 |
|
|
void *\fIstudy_data\fP; |
| 1088 |
|
|
unsigned long int \fImatch_limit\fP; |
| 1089 |
nigel |
87 |
unsigned long int \fImatch_limit_recursion\fP; |
| 1090 |
nigel |
75 |
void *\fIcallout_data\fP; |
| 1091 |
|
|
const unsigned char *\fItables\fP; |
| 1092 |
|
|
.sp |
| 1093 |
|
|
The \fIflags\fP field is a bitmap that specifies which of the other fields |
| 1094 |
nigel |
63 |
are set. The flag bits are: |
| 1095 |
nigel |
75 |
.sp |
| 1096 |
nigel |
63 |
PCRE_EXTRA_STUDY_DATA |
| 1097 |
|
|
PCRE_EXTRA_MATCH_LIMIT |
| 1098 |
nigel |
87 |
PCRE_EXTRA_MATCH_LIMIT_RECURSION |
| 1099 |
nigel |
63 |
PCRE_EXTRA_CALLOUT_DATA |
| 1100 |
nigel |
75 |
PCRE_EXTRA_TABLES |
| 1101 |
|
|
.sp |
| 1102 |
|
|
Other flag bits should be set to zero. The \fIstudy_data\fP field is set in the |
| 1103 |
|
|
\fBpcre_extra\fP block that is returned by \fBpcre_study()\fP, together with |
| 1104 |
|
|
the appropriate flag bit. You should not set this yourself, but you may add to |
| 1105 |
|
|
the block by setting the other fields and their corresponding flag bits. |
| 1106 |
|
|
.P |
| 1107 |
|
|
The \fImatch_limit\fP field provides a means of preventing PCRE from using up a |
| 1108 |
nigel |
63 |
vast amount of resources when running patterns that are not going to match, |
| 1109 |
|
|
but which have a very large number of possibilities in their search trees. The |
| 1110 |
nigel |
75 |
classic example is the use of nested unlimited repeats. |
| 1111 |
|
|
.P |
| 1112 |
|
|
Internally, PCRE uses a function called \fBmatch()\fP which it calls repeatedly |
| 1113 |
nigel |
87 |
(sometimes recursively). The limit set by \fImatch_limit\fP is imposed on the |
| 1114 |
|
|
number of times this function is called during a match, which has the effect of |
| 1115 |
|
|
limiting the amount of backtracking that can take place. For patterns that are |
| 1116 |
|
|
not anchored, the count restarts from zero for each position in the subject |
| 1117 |
|
|
string. |
| 1118 |
nigel |
75 |
.P |
| 1119 |
nigel |
87 |
The default value for the limit can be set when PCRE is built; the default |
| 1120 |
nigel |
63 |
default is 10 million, which handles all but the most extreme cases. You can |
| 1121 |
nigel |
87 |
override the default by suppling \fBpcre_exec()\fP with a \fBpcre_extra\fP |
| 1122 |
|
|
block in which \fImatch_limit\fP is set, and PCRE_EXTRA_MATCH_LIMIT is set in |
| 1123 |
|
|
the \fIflags\fP field. If the limit is exceeded, \fBpcre_exec()\fP returns |
| 1124 |
|
|
PCRE_ERROR_MATCHLIMIT. |
| 1125 |
nigel |
75 |
.P |
| 1126 |
nigel |
87 |
The \fImatch_limit_recursion\fP field is similar to \fImatch_limit\fP, but |
| 1127 |
|
|
instead of limiting the total number of times that \fBmatch()\fP is called, it |
| 1128 |
|
|
limits the depth of recursion. The recursion depth is a smaller number than the |
| 1129 |
|
|
total number of calls, because not all calls to \fBmatch()\fP are recursive. |
| 1130 |
|
|
This limit is of use only if it is set smaller than \fImatch_limit\fP. |
| 1131 |
|
|
.P |
| 1132 |
|
|
Limiting the recursion depth limits the amount of stack that can be used, or, |
| 1133 |
|
|
when PCRE has been compiled to use memory on the heap instead of the stack, the |
| 1134 |
|
|
amount of heap memory that can be used. |
| 1135 |
|
|
.P |
| 1136 |
|
|
The default value for \fImatch_limit_recursion\fP can be set when PCRE is |
| 1137 |
|
|
built; the default default is the same value as the default for |
| 1138 |
|
|
\fImatch_limit\fP. You can override the default by suppling \fBpcre_exec()\fP |
| 1139 |
|
|
with a \fBpcre_extra\fP block in which \fImatch_limit_recursion\fP is set, and |
| 1140 |
|
|
PCRE_EXTRA_MATCH_LIMIT_RECURSION is set in the \fIflags\fP field. If the limit |
| 1141 |
|
|
is exceeded, \fBpcre_exec()\fP returns PCRE_ERROR_RECURSIONLIMIT. |
| 1142 |
|
|
.P |
| 1143 |
nigel |
75 |
The \fIpcre_callout\fP field is used in conjunction with the "callout" feature, |
| 1144 |
|
|
which is described in the |
| 1145 |
|
|
.\" HREF |
| 1146 |
|
|
\fBpcrecallout\fP |
| 1147 |
|
|
.\" |
| 1148 |
|
|
documentation. |
| 1149 |
|
|
.P |
| 1150 |
|
|
The \fItables\fP field is used to pass a character tables pointer to |
| 1151 |
|
|
\fBpcre_exec()\fP; this overrides the value that is stored with the compiled |
| 1152 |
|
|
pattern. A non-NULL value is stored with the compiled pattern only if custom |
| 1153 |
|
|
tables were supplied to \fBpcre_compile()\fP via its \fItableptr\fP argument. |
| 1154 |
|
|
If NULL is passed to \fBpcre_exec()\fP using this mechanism, it forces PCRE's |
| 1155 |
|
|
internal tables to be used. This facility is helpful when re-using patterns |
| 1156 |
|
|
that have been saved after compiling with an external set of tables, because |
| 1157 |
|
|
the external tables might be at a different address when \fBpcre_exec()\fP is |
| 1158 |
|
|
called. See the |
| 1159 |
|
|
.\" HREF |
| 1160 |
|
|
\fBpcreprecompile\fP |
| 1161 |
|
|
.\" |
| 1162 |
|
|
documentation for a discussion of saving compiled patterns for later use. |
| 1163 |
|
|
. |
| 1164 |
|
|
.SS "Option bits for \fBpcre_exec()\fP" |
| 1165 |
|
|
.rs |
| 1166 |
|
|
.sp |
| 1167 |
|
|
The unused bits of the \fIoptions\fP argument for \fBpcre_exec()\fP must be |
| 1168 |
nigel |
91 |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP, |
| 1169 |
|
|
PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK and PCRE_PARTIAL. |
| 1170 |
nigel |
75 |
.sp |
| 1171 |
|
|
PCRE_ANCHORED |
| 1172 |
|
|
.sp |
| 1173 |
|
|
The PCRE_ANCHORED option limits \fBpcre_exec()\fP to matching at the first |
| 1174 |
|
|
matching position. If a pattern was compiled with PCRE_ANCHORED, or turned out |
| 1175 |
|
|
to be anchored by virtue of its contents, it cannot be made unachored at |
| 1176 |
|
|
matching time. |
| 1177 |
|
|
.sp |
| 1178 |
nigel |
91 |
PCRE_NEWLINE_CR |
| 1179 |
|
|
PCRE_NEWLINE_LF |
| 1180 |
|
|
PCRE_NEWLINE_CRLF |
| 1181 |
ph10 |
150 |
PCRE_NEWLINE_ANYCRLF |
| 1182 |
nigel |
93 |
PCRE_NEWLINE_ANY |
| 1183 |
nigel |
91 |
.sp |
| 1184 |
|
|
These options override the newline definition that was chosen or defaulted when |
| 1185 |
nigel |
93 |
the pattern was compiled. For details, see the description of |
| 1186 |
|
|
\fBpcre_compile()\fP above. During matching, the newline choice affects the |
| 1187 |
|
|
behaviour of the dot, circumflex, and dollar metacharacters. It may also alter |
| 1188 |
|
|
the way the match position is advanced after a match failure for an unanchored |
| 1189 |
ph10 |
149 |
pattern. When PCRE_NEWLINE_CRLF, PCRE_NEWLINE_ANYCRLF, or PCRE_NEWLINE_ANY is |
| 1190 |
|
|
set, and a match attempt fails when the current position is at a CRLF sequence, |
| 1191 |
|
|
the match position is advanced by two characters instead of one, in other |
| 1192 |
|
|
words, to after the CRLF. |
| 1193 |
nigel |
91 |
.sp |
| 1194 |
nigel |
63 |
PCRE_NOTBOL |
| 1195 |
nigel |
75 |
.sp |
| 1196 |
|
|
This option specifies that first character of the subject string is not the |
| 1197 |
|
|
beginning of a line, so the circumflex metacharacter should not match before |
| 1198 |
|
|
it. Setting this without PCRE_MULTILINE (at compile time) causes circumflex |
| 1199 |
|
|
never to match. This option affects only the behaviour of the circumflex |
| 1200 |
|
|
metacharacter. It does not affect \eA. |
| 1201 |
|
|
.sp |
| 1202 |
nigel |
63 |
PCRE_NOTEOL |
| 1203 |
nigel |
75 |
.sp |
| 1204 |
|
|
This option specifies that the end of the subject string is not the end of a |
| 1205 |
|
|
line, so the dollar metacharacter should not match it nor (except in multiline |
| 1206 |
|
|
mode) a newline immediately before it. Setting this without PCRE_MULTILINE (at |
| 1207 |
|
|
compile time) causes dollar never to match. This option affects only the |
| 1208 |
|
|
behaviour of the dollar metacharacter. It does not affect \eZ or \ez. |
| 1209 |
|
|
.sp |
| 1210 |
nigel |
63 |
PCRE_NOTEMPTY |
| 1211 |
nigel |
75 |
.sp |
| 1212 |
nigel |
63 |
An empty string is not considered to be a valid match if this option is set. If |
| 1213 |
|
|
there are alternatives in the pattern, they are tried. If all the alternatives |
| 1214 |
|
|
match the empty string, the entire match fails. For example, if the pattern |
| 1215 |
nigel |
75 |
.sp |
| 1216 |
nigel |
63 |
a?b? |
| 1217 |
nigel |
75 |
.sp |
| 1218 |
nigel |
63 |
is applied to a string not beginning with "a" or "b", it matches the empty |
| 1219 |
|
|
string at the start of the subject. With PCRE_NOTEMPTY set, this match is not |
| 1220 |
|
|
valid, so PCRE searches further into the string for occurrences of "a" or "b". |
| 1221 |
nigel |
75 |
.P |
| 1222 |
nigel |
63 |
Perl has no direct equivalent of PCRE_NOTEMPTY, but it does make a special case |
| 1223 |
nigel |
75 |
of a pattern match of the empty string within its \fBsplit()\fP function, and |
| 1224 |
nigel |
63 |
when using the /g modifier. It is possible to emulate Perl's behaviour after |
| 1225 |
|
|
matching a null string by first trying the match again at the same offset with |
| 1226 |
nigel |
75 |
PCRE_NOTEMPTY and PCRE_ANCHORED, and then if that fails by advancing the |
| 1227 |
|
|
starting offset (see below) and trying an ordinary match again. There is some |
| 1228 |
|
|
code that demonstrates how to do this in the \fIpcredemo.c\fP sample program. |
| 1229 |
|
|
.sp |
| 1230 |
|
|
PCRE_NO_UTF8_CHECK |
| 1231 |
|
|
.sp |
| 1232 |
|
|
When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8 |
| 1233 |
|
|
string is automatically checked when \fBpcre_exec()\fP is subsequently called. |
| 1234 |
|
|
The value of \fIstartoffset\fP is also checked to ensure that it points to the |
| 1235 |
|
|
start of a UTF-8 character. If an invalid UTF-8 sequence of bytes is found, |
| 1236 |
|
|
\fBpcre_exec()\fP returns the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP |
| 1237 |
|
|
contains an invalid value, PCRE_ERROR_BADUTF8_OFFSET is returned. |
| 1238 |
|
|
.P |
| 1239 |
|
|
If you already know that your subject is valid, and you want to skip these |
| 1240 |
|
|
checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when |
| 1241 |
|
|
calling \fBpcre_exec()\fP. You might want to do this for the second and |
| 1242 |
|
|
subsequent calls to \fBpcre_exec()\fP if you are making repeated calls to find |
| 1243 |
|
|
all the matches in a single subject string. However, you should be sure that |
| 1244 |
|
|
the value of \fIstartoffset\fP points to the start of a UTF-8 character. When |
| 1245 |
|
|
PCRE_NO_UTF8_CHECK is set, the effect of passing an invalid UTF-8 string as a |
| 1246 |
|
|
subject, or a value of \fIstartoffset\fP that does not point to the start of a |
| 1247 |
|
|
UTF-8 character, is undefined. Your program may crash. |
| 1248 |
|
|
.sp |
| 1249 |
|
|
PCRE_PARTIAL |
| 1250 |
|
|
.sp |
| 1251 |
|
|
This option turns on the partial matching feature. If the subject string fails |
| 1252 |
|
|
to match the pattern, but at some point during the matching process the end of |
| 1253 |
|
|
the subject was reached (that is, the subject partially matches the pattern and |
| 1254 |
|
|
the failure to match occurred only because there were not enough subject |
| 1255 |
|
|
characters), \fBpcre_exec()\fP returns PCRE_ERROR_PARTIAL instead of |
| 1256 |
|
|
PCRE_ERROR_NOMATCH. When PCRE_PARTIAL is used, there are restrictions on what |
| 1257 |
|
|
may appear in the pattern. These are discussed in the |
| 1258 |
|
|
.\" HREF |
| 1259 |
|
|
\fBpcrepartial\fP |
| 1260 |
|
|
.\" |
| 1261 |
|
|
documentation. |
| 1262 |
|
|
. |
| 1263 |
|
|
.SS "The string to be matched by \fBpcre_exec()\fP" |
| 1264 |
|
|
.rs |
| 1265 |
|
|
.sp |
| 1266 |
|
|
The subject string is passed to \fBpcre_exec()\fP as a pointer in |
| 1267 |
|
|
\fIsubject\fP, a length in \fIlength\fP, and a starting byte offset in |
| 1268 |
|
|
\fIstartoffset\fP. In UTF-8 mode, the byte offset must point to the start of a |
| 1269 |
|
|
UTF-8 character. Unlike the pattern string, the subject may contain binary zero |
| 1270 |
|
|
bytes. When the starting offset is zero, the search for a match starts at the |
| 1271 |
|
|
beginning of the subject, and this is by far the most common case. |
| 1272 |
|
|
.P |
| 1273 |
nigel |
63 |
A non-zero starting offset is useful when searching for another match in the |
| 1274 |
nigel |
75 |
same subject by calling \fBpcre_exec()\fP again after a previous success. |
| 1275 |
|
|
Setting \fIstartoffset\fP differs from just passing over a shortened string and |
| 1276 |
nigel |
63 |
setting PCRE_NOTBOL in the case of a pattern that begins with any kind of |
| 1277 |
|
|
lookbehind. For example, consider the pattern |
| 1278 |
nigel |
75 |
.sp |
| 1279 |
|
|
\eBiss\eB |
| 1280 |
|
|
.sp |
| 1281 |
|
|
which finds occurrences of "iss" in the middle of words. (\eB matches only if |
| 1282 |
nigel |
63 |
the current position in the subject is not a word boundary.) When applied to |
| 1283 |
nigel |
75 |
the string "Mississipi" the first call to \fBpcre_exec()\fP finds the first |
| 1284 |
|
|
occurrence. If \fBpcre_exec()\fP is called again with just the remainder of the |
| 1285 |
|
|
subject, namely "issipi", it does not match, because \eB is always false at the |
| 1286 |
nigel |
63 |
start of the subject, which is deemed to be a word boundary. However, if |
| 1287 |
nigel |
75 |
\fBpcre_exec()\fP is passed the entire string again, but with \fIstartoffset\fP |
| 1288 |
nigel |
63 |
set to 4, it finds the second occurrence of "iss" because it is able to look |
| 1289 |
|
|
behind the starting point to discover that it is preceded by a letter. |
| 1290 |
nigel |
75 |
.P |
| 1291 |
nigel |
63 |
If a non-zero starting offset is passed when the pattern is anchored, one |
| 1292 |
nigel |
75 |
attempt to match at the given offset is made. This can only succeed if the |
| 1293 |
nigel |
63 |
pattern does not require the match to be at the start of the subject. |
| 1294 |
nigel |
75 |
. |
| 1295 |
|
|
.SS "How \fBpcre_exec()\fP returns captured substrings" |
| 1296 |
|
|
.rs |
| 1297 |
|
|
.sp |
| 1298 |
nigel |
63 |
In general, a pattern matches a certain portion of the subject, and in |
| 1299 |
|
|
addition, further substrings from the subject may be picked out by parts of the |
| 1300 |
|
|
pattern. Following the usage in Jeffrey Friedl's book, this is called |
| 1301 |
|
|
"capturing" in what follows, and the phrase "capturing subpattern" is used for |
| 1302 |
|
|
a fragment of a pattern that picks out a substring. PCRE supports several other |
| 1303 |
|
|
kinds of parenthesized subpattern that do not cause substrings to be captured. |
| 1304 |
nigel |
75 |
.P |
| 1305 |
nigel |
63 |
Captured substrings are returned to the caller via a vector of integer offsets |
| 1306 |
nigel |
75 |
whose address is passed in \fIovector\fP. The number of elements in the vector |
| 1307 |
|
|
is passed in \fIovecsize\fP, which must be a non-negative number. \fBNote\fP: |
| 1308 |
|
|
this argument is NOT the size of \fIovector\fP in bytes. |
| 1309 |
|
|
.P |
| 1310 |
|
|
The first two-thirds of the vector is used to pass back captured substrings, |
| 1311 |
|
|
each substring using a pair of integers. The remaining third of the vector is |
| 1312 |
|
|
used as workspace by \fBpcre_exec()\fP while matching capturing subpatterns, |
| 1313 |
|
|
and is not available for passing back information. The length passed in |
| 1314 |
|
|
\fIovecsize\fP should always be a multiple of three. If it is not, it is |
| 1315 |
|
|
rounded down. |
| 1316 |
|
|
.P |
| 1317 |
|
|
When a match is successful, information about captured substrings is returned |
| 1318 |
|
|
in pairs of integers, starting at the beginning of \fIovector\fP, and |
| 1319 |
nigel |
63 |
continuing up to two-thirds of its length at the most. The first element of a |
| 1320 |
|
|
pair is set to the offset of the first character in a substring, and the second |
| 1321 |
|
|
is set to the offset of the first character after the end of a substring. The |
| 1322 |
nigel |
75 |
first pair, \fIovector[0]\fP and \fIovector[1]\fP, identify the portion of the |
| 1323 |
nigel |
63 |
subject string matched by the entire pattern. The next pair is used for the |
| 1324 |
nigel |
75 |
first capturing subpattern, and so on. The value returned by \fBpcre_exec()\fP |
| 1325 |
nigel |
91 |
is one more than the highest numbered pair that has been set. For example, if |
| 1326 |
|
|
two substrings have been captured, the returned value is 3. If there are no |
| 1327 |
|
|
capturing subpatterns, the return value from a successful match is 1, |
| 1328 |
|
|
indicating that just the first pair of offsets has been set. |
| 1329 |
nigel |
75 |
.P |
| 1330 |
nigel |
63 |
If a capturing subpattern is matched repeatedly, it is the last portion of the |
| 1331 |
nigel |
75 |
string that it matched that is returned. |
| 1332 |
|
|
.P |
| 1333 |
|
|
If the vector is too small to hold all the captured substring offsets, it is |
| 1334 |
|
|
used as far as possible (up to two-thirds of its length), and the function |
| 1335 |
|
|
returns a value of zero. In particular, if the substring offsets are not of |
| 1336 |
|
|
interest, \fBpcre_exec()\fP may be called with \fIovector\fP passed as NULL and |
| 1337 |
|
|
\fIovecsize\fP as zero. However, if the pattern contains back references and |
| 1338 |
|
|
the \fIovector\fP is not big enough to remember the related substrings, PCRE |
| 1339 |
|
|
has to get additional memory for use during matching. Thus it is usually |
| 1340 |
|
|
advisable to supply an \fIovector\fP. |
| 1341 |
|
|
.P |
| 1342 |
nigel |
91 |
The \fBpcre_info()\fP function can be used to find out how many capturing |
| 1343 |
nigel |
63 |
subpatterns there are in a compiled pattern. The smallest size for |
| 1344 |
nigel |
75 |
\fIovector\fP that will allow for \fIn\fP captured substrings, in addition to |
| 1345 |
|
|
the offsets of the substring matched by the whole pattern, is (\fIn\fP+1)*3. |
| 1346 |
nigel |
91 |
.P |
| 1347 |
|
|
It is possible for capturing subpattern number \fIn+1\fP to match some part of |
| 1348 |
|
|
the subject when subpattern \fIn\fP has not been used at all. For example, if |
| 1349 |
|
|
the string "abc" is matched against the pattern (a|(z))(bc) the return from the |
| 1350 |
|
|
function is 4, and subpatterns 1 and 3 are matched, but 2 is not. When this |
| 1351 |
|
|
happens, both values in the offset pairs corresponding to unused subpatterns |
| 1352 |
|
|
are set to -1. |
| 1353 |
|
|
.P |
| 1354 |
|
|
Offset values that correspond to unused subpatterns at the end of the |
| 1355 |
|
|
expression are also set to -1. For example, if the string "abc" is matched |
| 1356 |
|
|
against the pattern (abc)(x(yz)?)? subpatterns 2 and 3 are not matched. The |
| 1357 |
|
|
return from the function is 2, because the highest used capturing subpattern |
| 1358 |
|
|
number is 1. However, you can refer to the offsets for the second and third |
| 1359 |
|
|
capturing subpatterns if you wish (assuming the vector is large enough, of |
| 1360 |
|
|
course). |
| 1361 |
|
|
.P |
| 1362 |
|
|
Some convenience functions are provided for extracting the captured substrings |
| 1363 |
|
|
as separate strings. These are described below. |
| 1364 |
nigel |
75 |
. |
| 1365 |
nigel |
77 |
.\" HTML <a name="errorlist"></a> |
| 1366 |
nigel |
91 |
.SS "Error return values from \fBpcre_exec()\fP" |
| 1367 |
nigel |
75 |
.rs |
| 1368 |
|
|
.sp |
| 1369 |
|
|
If \fBpcre_exec()\fP fails, it returns a negative number. The following are |
| 1370 |
nigel |
63 |
defined in the header file: |
| 1371 |
nigel |
75 |
.sp |
| 1372 |
nigel |
63 |
PCRE_ERROR_NOMATCH (-1) |
| 1373 |
nigel |
75 |
.sp |
| 1374 |
nigel |
63 |
The subject string did not match the pattern. |
| 1375 |
nigel |
75 |
.sp |
| 1376 |
nigel |
63 |
PCRE_ERROR_NULL (-2) |
| 1377 |
nigel |
75 |
.sp |
| 1378 |
|
|
Either \fIcode\fP or \fIsubject\fP was passed as NULL, or \fIovector\fP was |
| 1379 |
|
|
NULL and \fIovecsize\fP was not zero. |
| 1380 |
|
|
.sp |
| 1381 |
nigel |
63 |
PCRE_ERROR_BADOPTION (-3) |
| 1382 |
nigel |
75 |
.sp |
| 1383 |
|
|
An unrecognized bit was set in the \fIoptions\fP argument. |
| 1384 |
|
|
.sp |
| 1385 |
nigel |
63 |
PCRE_ERROR_BADMAGIC (-4) |
| 1386 |
nigel |
75 |
.sp |
| 1387 |
nigel |
63 |
PCRE stores a 4-byte "magic number" at the start of the compiled code, to catch |
| 1388 |
nigel |
75 |
the case when it is passed a junk pointer and to detect when a pattern that was |
| 1389 |
|
|
compiled in an environment of one endianness is run in an environment with the |
| 1390 |
|
|
other endianness. This is the error that PCRE gives when the magic number is |
| 1391 |
|
|
not present. |
| 1392 |
|
|
.sp |
| 1393 |
nigel |
93 |
PCRE_ERROR_UNKNOWN_OPCODE (-5) |
| 1394 |
nigel |
75 |
.sp |
| 1395 |
nigel |
63 |
While running the pattern match, an unknown item was encountered in the |
| 1396 |
|
|
compiled pattern. This error could be caused by a bug in PCRE or by overwriting |
| 1397 |
|
|
of the compiled pattern. |
| 1398 |
nigel |
75 |
.sp |
| 1399 |
nigel |
63 |
PCRE_ERROR_NOMEMORY (-6) |
| 1400 |
nigel |
75 |
.sp |
| 1401 |
|
|
If a pattern contains back references, but the \fIovector\fP that is passed to |
| 1402 |
|
|
\fBpcre_exec()\fP is not big enough to remember the referenced substrings, PCRE |
| 1403 |
nigel |
63 |
gets a block of memory at the start of matching to use for this purpose. If the |
| 1404 |
nigel |
75 |
call via \fBpcre_malloc()\fP fails, this error is given. The memory is |
| 1405 |
|
|
automatically freed at the end of matching. |
| 1406 |
|
|
.sp |
| 1407 |
nigel |
63 |
PCRE_ERROR_NOSUBSTRING (-7) |
| 1408 |
nigel |
75 |
.sp |
| 1409 |
|
|
This error is used by the \fBpcre_copy_substring()\fP, |
| 1410 |
|
|
\fBpcre_get_substring()\fP, and \fBpcre_get_substring_list()\fP functions (see |
| 1411 |
|
|
below). It is never returned by \fBpcre_exec()\fP. |
| 1412 |
|
|
.sp |
| 1413 |
nigel |
63 |
PCRE_ERROR_MATCHLIMIT (-8) |
| 1414 |
nigel |
75 |
.sp |
| 1415 |
nigel |
87 |
The backtracking limit, as specified by the \fImatch_limit\fP field in a |
| 1416 |
|
|
\fBpcre_extra\fP structure (or defaulted) was reached. See the description |
| 1417 |
|
|
above. |
| 1418 |
|
|
.sp |
| 1419 |
nigel |
63 |
PCRE_ERROR_CALLOUT (-9) |
| 1420 |
nigel |
75 |
.sp |
| 1421 |
|
|
This error is never generated by \fBpcre_exec()\fP itself. It is provided for |
| 1422 |
nigel |
63 |
use by callout functions that want to yield a distinctive error code. See the |
| 1423 |
nigel |
75 |
.\" HREF |
| 1424 |
|
|
\fBpcrecallout\fP |
| 1425 |
|
|
.\" |
| 1426 |
|
|
documentation for details. |
| 1427 |
|
|
.sp |
| 1428 |
nigel |
73 |
PCRE_ERROR_BADUTF8 (-10) |
| 1429 |
nigel |
75 |
.sp |
| 1430 |
nigel |
71 |
A string that contains an invalid UTF-8 byte sequence was passed as a subject. |
| 1431 |
nigel |
75 |
.sp |
| 1432 |
nigel |
73 |
PCRE_ERROR_BADUTF8_OFFSET (-11) |
| 1433 |
nigel |
75 |
.sp |
| 1434 |
nigel |
73 |
The UTF-8 byte sequence that was passed as a subject was valid, but the value |
| 1435 |
nigel |
75 |
of \fIstartoffset\fP did not point to the beginning of a UTF-8 character. |
| 1436 |
|
|
.sp |
| 1437 |
nigel |
77 |
PCRE_ERROR_PARTIAL (-12) |
| 1438 |
nigel |
75 |
.sp |
| 1439 |
|
|
The subject string did not match, but it did match partially. See the |
| 1440 |
|
|
.\" HREF |
| 1441 |
|
|
\fBpcrepartial\fP |
| 1442 |
|
|
.\" |
| 1443 |
|
|
documentation for details of partial matching. |
| 1444 |
|
|
.sp |
| 1445 |
nigel |
77 |
PCRE_ERROR_BADPARTIAL (-13) |
| 1446 |
nigel |
75 |
.sp |
| 1447 |
|
|
The PCRE_PARTIAL option was used with a compiled pattern containing items that |
| 1448 |
|
|
are not supported for partial matching. See the |
| 1449 |
|
|
.\" HREF |
| 1450 |
|
|
\fBpcrepartial\fP |
| 1451 |
|
|
.\" |
| 1452 |
|
|
documentation for details of partial matching. |
| 1453 |
|
|
.sp |
| 1454 |
nigel |
77 |
PCRE_ERROR_INTERNAL (-14) |
| 1455 |
nigel |
75 |
.sp |
| 1456 |
|
|
An unexpected internal error has occurred. This error could be caused by a bug |
| 1457 |
|
|
in PCRE or by overwriting of the compiled pattern. |
| 1458 |
|
|
.sp |
| 1459 |
nigel |
77 |
PCRE_ERROR_BADCOUNT (-15) |
| 1460 |
nigel |
75 |
.sp |
| 1461 |
|
|
This error is given if the value of the \fIovecsize\fP argument is negative. |
| 1462 |
nigel |
93 |
.sp |
| 1463 |
|
|
PCRE_ERROR_RECURSIONLIMIT (-21) |
| 1464 |
|
|
.sp |
| 1465 |
|
|
The internal recursion limit, as specified by the \fImatch_limit_recursion\fP |
| 1466 |
|
|
field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the |
| 1467 |
|
|
description above. |
| 1468 |
|
|
.sp |
| 1469 |
|
|
PCRE_ERROR_NULLWSLIMIT (-22) |
| 1470 |
|
|
.sp |
| 1471 |
ph10 |
191 |
When a parenthesized subpattern that can match an empty substring is repeated |
| 1472 |
|
|
with an unbounded upper limit, the subject position at the start of the group |
| 1473 |
|
|
must be remembered, so that a test for an empty string can be made when the end |
| 1474 |
|
|
of the group is reached. The repetition loop is automatically terminated when |
| 1475 |
|
|
an empty string is matched. |
| 1476 |
|
|
.P |
| 1477 |
|
|
Some workspace is required for remembering the starting position. For most |
| 1478 |
|
|
capturing subpatterns, an internal recursive call of the match() function is |
| 1479 |
|
|
used, and in this case, the workspace is taken from the runtime stack. However, |
| 1480 |
|
|
for non-capturing subpatterns, this is not available. Instead, some fixed |
| 1481 |
|
|
workspace (taken from the top-level stack) is used. If it runs out, the |
| 1482 |
|
|
PCRE_ERROR_NULLWSLIMIT error is given. The size of the fixed workspace allows |
| 1483 |
|
|
for up to 1000 repetitions of a non-capturing subpattern that might match an |
| 1484 |
|
|
empty string. If this limit is a problem for you, you can sometimes get round |
| 1485 |
|
|
it by changing a non-capturing subpattern into a capturing one, but that will |
| 1486 |
|
|
increase the amount of runtime stack that is used. |
| 1487 |
nigel |
93 |
.sp |
| 1488 |
|
|
PCRE_ERROR_BADNEWLINE (-23) |
| 1489 |
|
|
.sp |
| 1490 |
|
|
An invalid combination of PCRE_NEWLINE_\fIxxx\fP options was given. |
| 1491 |
|
|
.P |
| 1492 |
|
|
Error numbers -16 to -20 are not used by \fBpcre_exec()\fP. |
| 1493 |
nigel |
75 |
. |
| 1494 |
|
|
. |
| 1495 |
|
|
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER" |
| 1496 |
nigel |
63 |
.rs |
| 1497 |
|
|
.sp |
| 1498 |
nigel |
75 |
.B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 1499 |
nigel |
63 |
.ti +5n |
| 1500 |
nigel |
75 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP, |
| 1501 |
nigel |
63 |
.ti +5n |
| 1502 |
nigel |
75 |
.B int \fIbuffersize\fP); |
| 1503 |
nigel |
63 |
.PP |
| 1504 |
nigel |
75 |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 1505 |
nigel |
63 |
.ti +5n |
| 1506 |
nigel |
75 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
| 1507 |
nigel |
63 |
.ti +5n |
| 1508 |
nigel |
75 |
.B const char **\fIstringptr\fP); |
| 1509 |
nigel |
63 |
.PP |
| 1510 |
nigel |
75 |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
| 1511 |
nigel |
63 |
.ti +5n |
| 1512 |
nigel |
75 |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
| 1513 |
nigel |
63 |
.PP |
| 1514 |
|
|
Captured substrings can be accessed directly by using the offsets returned by |
| 1515 |
nigel |
75 |
\fBpcre_exec()\fP in \fIovector\fP. For convenience, the functions |
| 1516 |
|
|
\fBpcre_copy_substring()\fP, \fBpcre_get_substring()\fP, and |
| 1517 |
|
|
\fBpcre_get_substring_list()\fP are provided for extracting captured substrings |
| 1518 |
nigel |
63 |
as new, separate, zero-terminated strings. These functions identify substrings |
| 1519 |
|
|
by number. The next section describes functions for extracting named |
| 1520 |
nigel |
91 |
substrings. |
| 1521 |
nigel |
75 |
.P |
| 1522 |
nigel |
91 |
A substring that contains a binary zero is correctly extracted and has a |
| 1523 |
|
|
further zero added on the end, but the result is not, of course, a C string. |
| 1524 |
|
|
However, you can process such a string by referring to the length that is |
| 1525 |
|
|
returned by \fBpcre_copy_substring()\fP and \fBpcre_get_substring()\fP. |
| 1526 |
|
|
Unfortunately, the interface to \fBpcre_get_substring_list()\fP is not adequate |
| 1527 |
|
|
for handling strings containing binary zeros, because the end of the final |
| 1528 |
|
|
string is not independently indicated. |
| 1529 |
|
|
.P |
| 1530 |
nigel |
63 |
The first three arguments are the same for all three of these functions: |
| 1531 |
nigel |
75 |
\fIsubject\fP is the subject string that has just been successfully matched, |
| 1532 |
|
|
\fIovector\fP is a pointer to the vector of integer offsets that was passed to |
| 1533 |
|
|
\fBpcre_exec()\fP, and \fIstringcount\fP is the number of substrings that were |
| 1534 |
nigel |
63 |
captured by the match, including the substring that matched the entire regular |
| 1535 |
nigel |
75 |
expression. This is the value returned by \fBpcre_exec()\fP if it is greater |
| 1536 |
|
|
than zero. If \fBpcre_exec()\fP returned zero, indicating that it ran out of |
| 1537 |
|
|
space in \fIovector\fP, the value passed as \fIstringcount\fP should be the |
| 1538 |
|
|
number of elements in the vector divided by three. |
| 1539 |
|
|
.P |
| 1540 |
|
|
The functions \fBpcre_copy_substring()\fP and \fBpcre_get_substring()\fP |
| 1541 |
|
|
extract a single substring, whose number is given as \fIstringnumber\fP. A |
| 1542 |
|
|
value of zero extracts the substring that matched the entire pattern, whereas |
| 1543 |
|
|
higher values extract the captured substrings. For \fBpcre_copy_substring()\fP, |
| 1544 |
|
|
the string is placed in \fIbuffer\fP, whose length is given by |
| 1545 |
|
|
\fIbuffersize\fP, while for \fBpcre_get_substring()\fP a new block of memory is |
| 1546 |
|
|
obtained via \fBpcre_malloc\fP, and its address is returned via |
| 1547 |
|
|
\fIstringptr\fP. The yield of the function is the length of the string, not |
| 1548 |
nigel |
93 |
including the terminating zero, or one of these error codes: |
| 1549 |
nigel |
75 |
.sp |
| 1550 |
nigel |
63 |
PCRE_ERROR_NOMEMORY (-6) |
| 1551 |
nigel |
75 |
.sp |
| 1552 |
|
|
The buffer was too small for \fBpcre_copy_substring()\fP, or the attempt to get |
| 1553 |
|
|
memory failed for \fBpcre_get_substring()\fP. |
| 1554 |
|
|
.sp |
| 1555 |
nigel |
63 |
PCRE_ERROR_NOSUBSTRING (-7) |
| 1556 |
nigel |
75 |
.sp |
| 1557 |
|
|
There is no substring whose number is \fIstringnumber\fP. |
| 1558 |
|
|
.P |
| 1559 |
|
|
The \fBpcre_get_substring_list()\fP function extracts all available substrings |
| 1560 |
nigel |
63 |
and builds a list of pointers to them. All this is done in a single block of |
| 1561 |
nigel |
75 |
memory that is obtained via \fBpcre_malloc\fP. The address of the memory block |
| 1562 |
|
|
is returned via \fIlistptr\fP, which is also the start of the list of string |
| 1563 |
nigel |
63 |
pointers. The end of the list is marked by a NULL pointer. The yield of the |
| 1564 |
nigel |
93 |
function is zero if all went well, or the error code |
| 1565 |
nigel |
75 |
.sp |
| 1566 |
nigel |
63 |
PCRE_ERROR_NOMEMORY (-6) |
| 1567 |
nigel |
75 |
.sp |
| 1568 |
nigel |
63 |
if the attempt to get the memory block failed. |
| 1569 |
nigel |
75 |
.P |
| 1570 |
nigel |
63 |
When any of these functions encounter a substring that is unset, which can |
| 1571 |
nigel |
75 |
happen when capturing subpattern number \fIn+1\fP matches some part of the |
| 1572 |
|
|
subject, but subpattern \fIn\fP has not been used at all, they return an empty |
| 1573 |
nigel |
63 |
string. This can be distinguished from a genuine zero-length substring by |
| 1574 |
nigel |
75 |
inspecting the appropriate offset in \fIovector\fP, which is negative for unset |
| 1575 |
nigel |
63 |
substrings. |
| 1576 |
nigel |
75 |
.P |
| 1577 |
|
|
The two convenience functions \fBpcre_free_substring()\fP and |
| 1578 |
|
|
\fBpcre_free_substring_list()\fP can be used to free the memory returned by |
| 1579 |
|
|
a previous call of \fBpcre_get_substring()\fP or |
| 1580 |
|
|
\fBpcre_get_substring_list()\fP, respectively. They do nothing more than call |
| 1581 |
|
|
the function pointed to by \fBpcre_free\fP, which of course could be called |
| 1582 |
nigel |
63 |
directly from a C program. However, PCRE is used in some situations where it is |
| 1583 |
nigel |
91 |
linked via a special interface to another programming language that cannot use |
| 1584 |
nigel |
75 |
\fBpcre_free\fP directly; it is for these cases that the functions are |
| 1585 |
nigel |
63 |
provided. |
| 1586 |
nigel |
75 |
. |
| 1587 |
|
|
. |
| 1588 |
|
|
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NAME" |
| 1589 |
nigel |
63 |
.rs |
| 1590 |
|
|
.sp |
| 1591 |
nigel |
75 |
.B int pcre_get_stringnumber(const pcre *\fIcode\fP, |
| 1592 |
nigel |
63 |
.ti +5n |
| 1593 |
nigel |
75 |
.B const char *\fIname\fP); |
| 1594 |
nigel |
63 |
.PP |
| 1595 |
nigel |
75 |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
| 1596 |
nigel |
63 |
.ti +5n |
| 1597 |
nigel |
75 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 1598 |
|
|
.ti +5n |
| 1599 |
|
|
.B int \fIstringcount\fP, const char *\fIstringname\fP, |
| 1600 |
|
|
.ti +5n |
| 1601 |
|
|
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
| 1602 |
nigel |
63 |
.PP |
| 1603 |
nigel |
75 |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
| 1604 |
nigel |
63 |
.ti +5n |
| 1605 |
nigel |
75 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 1606 |
nigel |
63 |
.ti +5n |
| 1607 |
nigel |
75 |
.B int \fIstringcount\fP, const char *\fIstringname\fP, |
| 1608 |
nigel |
63 |
.ti +5n |
| 1609 |
nigel |
75 |
.B const char **\fIstringptr\fP); |
| 1610 |
nigel |
63 |
.PP |
| 1611 |
nigel |
75 |
To extract a substring by name, you first have to find associated number. |
| 1612 |
|
|
For example, for this pattern |
| 1613 |
|
|
.sp |
| 1614 |
nigel |
93 |
(a+)b(?<xxx>\ed+)... |
| 1615 |
nigel |
75 |
.sp |
| 1616 |
nigel |
91 |
the number of the subpattern called "xxx" is 2. If the name is known to be |
| 1617 |
|
|
unique (PCRE_DUPNAMES was not set), you can find the number from the name by |
| 1618 |
|
|
calling \fBpcre_get_stringnumber()\fP. The first argument is the compiled |
| 1619 |
|
|
pattern, and the second is the name. The yield of the function is the |
| 1620 |
nigel |
75 |
subpattern number, or PCRE_ERROR_NOSUBSTRING (-7) if there is no subpattern of |
| 1621 |
|
|
that name. |
| 1622 |
|
|
.P |
| 1623 |
|
|
Given the number, you can extract the substring directly, or use one of the |
| 1624 |
|
|
functions described in the previous section. For convenience, there are also |
| 1625 |
|
|
two functions that do the whole job. |
| 1626 |
|
|
.P |
| 1627 |
nigel |
91 |
Most of the arguments of \fBpcre_copy_named_substring()\fP and |
| 1628 |
|
|
\fBpcre_get_named_substring()\fP are the same as those for the similarly named |
| 1629 |
nigel |
75 |
functions that extract by number. As these are described in the previous |
| 1630 |
|
|
section, they are not re-described here. There are just two differences: |
| 1631 |
|
|
.P |
| 1632 |
nigel |
63 |
First, instead of a substring number, a substring name is given. Second, there |
| 1633 |
|
|
is an extra argument, given at the start, which is a pointer to the compiled |
| 1634 |
|
|
pattern. This is needed in order to gain access to the name-to-number |
| 1635 |
|
|
translation table. |
| 1636 |
nigel |
75 |
.P |
| 1637 |
|
|
These functions call \fBpcre_get_stringnumber()\fP, and if it succeeds, they |
| 1638 |
ph10 |
127 |
then call \fBpcre_copy_substring()\fP or \fBpcre_get_substring()\fP, as |
| 1639 |
|
|
appropriate. \fBNOTE:\fP If PCRE_DUPNAMES is set and there are duplicate names, |
| 1640 |
ph10 |
128 |
the behaviour may not be what you want (see the next section). |
| 1641 |
nigel |
77 |
. |
| 1642 |
|
|
. |
| 1643 |
nigel |
91 |
.SH "DUPLICATE SUBPATTERN NAMES" |
| 1644 |
|
|
.rs |
| 1645 |
|
|
.sp |
| 1646 |
|
|
.B int pcre_get_stringtable_entries(const pcre *\fIcode\fP, |
| 1647 |
|
|
.ti +5n |
| 1648 |
|
|
.B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP); |
| 1649 |
|
|
.PP |
| 1650 |
|
|
When a pattern is compiled with the PCRE_DUPNAMES option, names for subpatterns |
| 1651 |
|
|
are not required to be unique. Normally, patterns with duplicate names are such |
| 1652 |
|
|
that in any one match, only one of the named subpatterns participates. An |
| 1653 |
|
|
example is shown in the |
| 1654 |
|
|
.\" HREF |
| 1655 |
|
|
\fBpcrepattern\fP |
| 1656 |
|
|
.\" |
| 1657 |
|
|
documentation. When duplicates are present, \fBpcre_copy_named_substring()\fP |
| 1658 |
|
|
and \fBpcre_get_named_substring()\fP return the first substring corresponding |
| 1659 |
|
|
to the given name that is set. If none are set, an empty string is returned. |
| 1660 |
|
|
The \fBpcre_get_stringnumber()\fP function returns one of the numbers that are |
| 1661 |
|
|
associated with the name, but it is not defined which it is. |
| 1662 |
|
|
.sp |
| 1663 |
|
|
If you want to get full details of all captured substrings for a given name, |
| 1664 |
|
|
you must use the \fBpcre_get_stringtable_entries()\fP function. The first |
| 1665 |
|
|
argument is the compiled pattern, and the second is the name. The third and |
| 1666 |
|
|
fourth are pointers to variables which are updated by the function. After it |
| 1667 |
|
|
has run, they point to the first and last entries in the name-to-number table |
| 1668 |
|
|
for the given name. The function itself returns the length of each entry, or |
| 1669 |
nigel |
93 |
PCRE_ERROR_NOSUBSTRING (-7) if there are none. The format of the table is |
| 1670 |
|
|
described above in the section entitled \fIInformation about a pattern\fP. |
| 1671 |
|
|
Given all the relevant entries for the name, you can extract each of their |
| 1672 |
|
|
numbers, and hence the captured data, if any. |
| 1673 |
nigel |
91 |
. |
| 1674 |
|
|
. |
| 1675 |
nigel |
77 |
.SH "FINDING ALL POSSIBLE MATCHES" |
| 1676 |
|
|
.rs |
| 1677 |
|
|
.sp |
| 1678 |
|
|
The traditional matching function uses a similar algorithm to Perl, which stops |
| 1679 |
|
|
when it finds the first match, starting at a given point in the subject. If you |
| 1680 |
|
|
want to find all possible matches, or the longest possible match, consider |
| 1681 |
|
|
using the alternative matching function (see below) instead. If you cannot use |
| 1682 |
|
|
the alternative function, but still need to find all possible matches, you |
| 1683 |
|
|
can kludge it up by making use of the callout facility, which is described in |
| 1684 |
|
|
the |
| 1685 |
|
|
.\" HREF |
| 1686 |
|
|
\fBpcrecallout\fP |
| 1687 |
|
|
.\" |
| 1688 |
|
|
documentation. |
| 1689 |
nigel |
75 |
.P |
| 1690 |
nigel |
77 |
What you have to do is to insert a callout right at the end of the pattern. |
| 1691 |
|
|
When your callout function is called, extract and save the current matched |
| 1692 |
|
|
substring. Then return 1, which forces \fBpcre_exec()\fP to backtrack and try |
| 1693 |
|
|
other alternatives. Ultimately, when it runs out of matches, \fBpcre_exec()\fP |
| 1694 |
|
|
will yield PCRE_ERROR_NOMATCH. |
| 1695 |
|
|
. |
| 1696 |
|
|
. |
| 1697 |
|
|
.\" HTML <a name="dfamatch"></a> |
| 1698 |
|
|
.SH "MATCHING A PATTERN: THE ALTERNATIVE FUNCTION" |
| 1699 |
|
|
.rs |
| 1700 |
|
|
.sp |
| 1701 |
|
|
.B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 1702 |
|
|
.ti +5n |
| 1703 |
|
|
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 1704 |
|
|
.ti +5n |
| 1705 |
|
|
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP, |
| 1706 |
|
|
.ti +5n |
| 1707 |
|
|
.B int *\fIworkspace\fP, int \fIwscount\fP); |
| 1708 |
|
|
.P |
| 1709 |
|
|
The function \fBpcre_dfa_exec()\fP is called to match a subject string against |
| 1710 |
nigel |
93 |
a compiled pattern, using a matching algorithm that scans the subject string |
| 1711 |
|
|
just once, and does not backtrack. This has different characteristics to the |
| 1712 |
|
|
normal algorithm, and is not compatible with Perl. Some of the features of PCRE |
| 1713 |
|
|
patterns are not supported. Nevertheless, there are times when this kind of |
| 1714 |
|
|
matching can be useful. For a discussion of the two matching algorithms, see |
| 1715 |
|
|
the |
| 1716 |
nigel |
77 |
.\" HREF |
| 1717 |
|
|
\fBpcrematching\fP |
| 1718 |
|
|
.\" |
| 1719 |
|
|
documentation. |
| 1720 |
|
|
.P |
| 1721 |
|
|
The arguments for the \fBpcre_dfa_exec()\fP function are the same as for |
| 1722 |
|
|
\fBpcre_exec()\fP, plus two extras. The \fIovector\fP argument is used in a |
| 1723 |
|
|
different way, and this is described below. The other common arguments are used |
| 1724 |
|
|
in the same way as for \fBpcre_exec()\fP, so their description is not repeated |
| 1725 |
|
|
here. |
| 1726 |
|
|
.P |
| 1727 |
|
|
The two additional arguments provide workspace for the function. The workspace |
| 1728 |
|
|
vector should contain at least 20 elements. It is used for keeping track of |
| 1729 |
|
|
multiple paths through the pattern tree. More workspace will be needed for |
| 1730 |
nigel |
91 |
patterns and subjects where there are a lot of potential matches. |
| 1731 |
nigel |
77 |
.P |
| 1732 |
nigel |
87 |
Here is an example of a simple call to \fBpcre_dfa_exec()\fP: |
| 1733 |
nigel |
77 |
.sp |
| 1734 |
|
|
int rc; |
| 1735 |
|
|
int ovector[10]; |
| 1736 |
|
|
int wspace[20]; |
| 1737 |
nigel |
87 |
rc = pcre_dfa_exec( |
| 1738 |
nigel |
77 |
re, /* result of pcre_compile() */ |
| 1739 |
|
|
NULL, /* we didn't study the pattern */ |
| 1740 |
|
|
"some string", /* the subject string */ |
| 1741 |
|
|
11, /* the length of the subject string */ |
| 1742 |
|
|
0, /* start at offset 0 in the subject */ |
| 1743 |
|
|
0, /* default options */ |
| 1744 |
|
|
ovector, /* vector of integers for substring information */ |
| 1745 |
|
|
10, /* number of elements (NOT size in bytes) */ |
| 1746 |
|
|
wspace, /* working space vector */ |
| 1747 |
|
|
20); /* number of elements (NOT size in bytes) */ |
| 1748 |
|
|
. |
| 1749 |
|
|
.SS "Option bits for \fBpcre_dfa_exec()\fP" |
| 1750 |
|
|
.rs |
| 1751 |
|
|
.sp |
| 1752 |
|
|
The unused bits of the \fIoptions\fP argument for \fBpcre_dfa_exec()\fP must be |
| 1753 |
nigel |
91 |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP, |
| 1754 |
|
|
PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL, |
| 1755 |
nigel |
77 |
PCRE_DFA_SHORTEST, and PCRE_DFA_RESTART. All but the last three of these are |
| 1756 |
|
|
the same as for \fBpcre_exec()\fP, so their description is not repeated here. |
| 1757 |
|
|
.sp |
| 1758 |
|
|
PCRE_PARTIAL |
| 1759 |
|
|
.sp |
| 1760 |
|
|
This has the same general effect as it does for \fBpcre_exec()\fP, but the |
| 1761 |
|
|
details are slightly different. When PCRE_PARTIAL is set for |
| 1762 |
|
|
\fBpcre_dfa_exec()\fP, the return code PCRE_ERROR_NOMATCH is converted into |
| 1763 |
|
|
PCRE_ERROR_PARTIAL if the end of the subject is reached, there have been no |
| 1764 |
|
|
complete matches, but there is still at least one matching possibility. The |
| 1765 |
|
|
portion of the string that provided the partial match is set as the first |
| 1766 |
|
|
matching string. |
| 1767 |
|
|
.sp |
| 1768 |
|
|
PCRE_DFA_SHORTEST |
| 1769 |
|
|
.sp |
| 1770 |
|
|
Setting the PCRE_DFA_SHORTEST option causes the matching algorithm to stop as |
| 1771 |
nigel |
93 |
soon as it has found one match. Because of the way the alternative algorithm |
| 1772 |
|
|
works, this is necessarily the shortest possible match at the first possible |
| 1773 |
|
|
matching point in the subject string. |
| 1774 |
nigel |
77 |
.sp |
| 1775 |
|
|
PCRE_DFA_RESTART |
| 1776 |
|
|
.sp |
| 1777 |
|
|
When \fBpcre_dfa_exec()\fP is called with the PCRE_PARTIAL option, and returns |
| 1778 |
|
|
a partial match, it is possible to call it again, with additional subject |
| 1779 |
|
|
characters, and have it continue with the same match. The PCRE_DFA_RESTART |
| 1780 |
|
|
option requests this action; when it is set, the \fIworkspace\fP and |
| 1781 |
|
|
\fIwscount\fP options must reference the same vector as before because data |
| 1782 |
|
|
about the match so far is left in them after a partial match. There is more |
| 1783 |
|
|
discussion of this facility in the |
| 1784 |
|
|
.\" HREF |
| 1785 |
|
|
\fBpcrepartial\fP |
| 1786 |
|
|
.\" |
| 1787 |
|
|
documentation. |
| 1788 |
|
|
. |
| 1789 |
|
|
.SS "Successful returns from \fBpcre_dfa_exec()\fP" |
| 1790 |
|
|
.rs |
| 1791 |
|
|
.sp |
| 1792 |
|
|
When \fBpcre_dfa_exec()\fP succeeds, it may have matched more than one |
| 1793 |
|
|
substring in the subject. Note, however, that all the matches from one run of |
| 1794 |
|
|
the function start at the same point in the subject. The shorter matches are |
| 1795 |
|
|
all initial substrings of the longer matches. For example, if the pattern |
| 1796 |
|
|
.sp |
| 1797 |
|
|
<.*> |
| 1798 |
|
|
.sp |
| 1799 |
|
|
is matched against the string |
| 1800 |
|
|
.sp |
| 1801 |
|
|
This is <something> <something else> <something further> no more |
| 1802 |
|
|
.sp |
| 1803 |
|
|
the three matched strings are |
| 1804 |
|
|
.sp |
| 1805 |
|
|
<something> |
| 1806 |
|
|
<something> <something else> |
| 1807 |
|
|
<something> <something else> <something further> |
| 1808 |
|
|
.sp |
| 1809 |
|
|
On success, the yield of the function is a number greater than zero, which is |
| 1810 |
|
|
the number of matched substrings. The substrings themselves are returned in |
| 1811 |
|
|
\fIovector\fP. Each string uses two elements; the first is the offset to the |
| 1812 |
nigel |
93 |
start, and the second is the offset to the end. In fact, all the strings have |
| 1813 |
|
|
the same start offset. (Space could have been saved by giving this only once, |
| 1814 |
|
|
but it was decided to retain some compatibility with the way \fBpcre_exec()\fP |
| 1815 |
|
|
returns data, even though the meaning of the strings is different.) |
| 1816 |
nigel |
77 |
.P |
| 1817 |
|
|
The strings are returned in reverse order of length; that is, the longest |
| 1818 |
|
|
matching string is given first. If there were too many matches to fit into |
| 1819 |
|
|
\fIovector\fP, the yield of the function is zero, and the vector is filled with |
| 1820 |
|
|
the longest matches. |
| 1821 |
|
|
. |
| 1822 |
|
|
.SS "Error returns from \fBpcre_dfa_exec()\fP" |
| 1823 |
|
|
.rs |
| 1824 |
|
|
.sp |
| 1825 |
|
|
The \fBpcre_dfa_exec()\fP function returns a negative number when it fails. |
| 1826 |
|
|
Many of the errors are the same as for \fBpcre_exec()\fP, and these are |
| 1827 |
|
|
described |
| 1828 |
|
|
.\" HTML <a href="#errorlist"> |
| 1829 |
|
|
.\" </a> |
| 1830 |
|
|
above. |
| 1831 |
|
|
.\" |
| 1832 |
|
|
There are in addition the following errors that are specific to |
| 1833 |
|
|
\fBpcre_dfa_exec()\fP: |
| 1834 |
|
|
.sp |
| 1835 |
|
|
PCRE_ERROR_DFA_UITEM (-16) |
| 1836 |
|
|
.sp |
| 1837 |
|
|
This return is given if \fBpcre_dfa_exec()\fP encounters an item in the pattern |
| 1838 |
|
|
that it does not support, for instance, the use of \eC or a back reference. |
| 1839 |
|
|
.sp |
| 1840 |
|
|
PCRE_ERROR_DFA_UCOND (-17) |
| 1841 |
|
|
.sp |
| 1842 |
nigel |
93 |
This return is given if \fBpcre_dfa_exec()\fP encounters a condition item that |
| 1843 |
|
|
uses a back reference for the condition, or a test for recursion in a specific |
| 1844 |
|
|
group. These are not supported. |
| 1845 |
nigel |
77 |
.sp |
| 1846 |
|
|
PCRE_ERROR_DFA_UMLIMIT (-18) |
| 1847 |
|
|
.sp |
| 1848 |
|
|
This return is given if \fBpcre_dfa_exec()\fP is called with an \fIextra\fP |
| 1849 |
|
|
block that contains a setting of the \fImatch_limit\fP field. This is not |
| 1850 |
|
|
supported (it is meaningless). |
| 1851 |
|
|
.sp |
| 1852 |
|
|
PCRE_ERROR_DFA_WSSIZE (-19) |
| 1853 |
|
|
.sp |
| 1854 |
|
|
This return is given if \fBpcre_dfa_exec()\fP runs out of space in the |
| 1855 |
|
|
\fIworkspace\fP vector. |
| 1856 |
|
|
.sp |
| 1857 |
|
|
PCRE_ERROR_DFA_RECURSE (-20) |
| 1858 |
|
|
.sp |
| 1859 |
|
|
When a recursive subpattern is processed, the matching function calls itself |
| 1860 |
|
|
recursively, using private vectors for \fIovector\fP and \fIworkspace\fP. This |
| 1861 |
|
|
error is given if the output vector is not large enough. This should be |
| 1862 |
|
|
extremely rare, as a vector of size 1000 is used. |
| 1863 |
nigel |
93 |
. |
| 1864 |
|
|
. |
| 1865 |
|
|
.SH "SEE ALSO" |
| 1866 |
|
|
.rs |
| 1867 |
|
|
.sp |
| 1868 |
|
|
\fBpcrebuild\fP(3), \fBpcrecallout\fP(3), \fBpcrecpp(3)\fP(3), |
| 1869 |
|
|
\fBpcrematching\fP(3), \fBpcrepartial\fP(3), \fBpcreposix\fP(3), |
| 1870 |
|
|
\fBpcreprecompile\fP(3), \fBpcresample\fP(3), \fBpcrestack\fP(3). |
| 1871 |
ph10 |
99 |
. |
| 1872 |
|
|
. |
| 1873 |
|
|
.SH AUTHOR |
| 1874 |
|
|
.rs |
| 1875 |
|
|
.sp |
| 1876 |
|
|
.nf |
| 1877 |
|
|
Philip Hazel |
| 1878 |
|
|
University Computing Service |
| 1879 |
|
|
Cambridge CB2 3QH, England. |
| 1880 |
|
|
.fi |
| 1881 |
|
|
. |
| 1882 |
|
|
. |
| 1883 |
|
|
.SH REVISION |
| 1884 |
|
|
.rs |
| 1885 |
|
|
.sp |
| 1886 |
|
|
.nf |
| 1887 |
ph10 |
191 |
Last updated: 30 July 2007 |
| 1888 |
ph10 |
99 |
Copyright (c) 1997-2007 University of Cambridge. |
| 1889 |
|
|
.fi |