| 1 |
.TH PCRE 3 |
.TH PCREAPI 3 |
| 2 |
.SH NAME |
.SH NAME |
| 3 |
PCRE - Perl-compatible regular expressions |
PCRE - Perl-compatible regular expressions |
| 4 |
.SH "PCRE NATIVE API" |
.SH "PCRE NATIVE API" |
| 7 |
.B #include <pcre.h> |
.B #include <pcre.h> |
| 8 |
.PP |
.PP |
| 9 |
.SM |
.SM |
|
.br |
|
| 10 |
.B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP, |
.B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP, |
| 11 |
.ti +5n |
.ti +5n |
| 12 |
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
| 13 |
.ti +5n |
.ti +5n |
| 14 |
.B const unsigned char *\fItableptr\fP); |
.B const unsigned char *\fItableptr\fP); |
| 15 |
.PP |
.PP |
|
.br |
|
| 16 |
.B pcre *pcre_compile2(const char *\fIpattern\fP, int \fIoptions\fP, |
.B pcre *pcre_compile2(const char *\fIpattern\fP, int \fIoptions\fP, |
| 17 |
.ti +5n |
.ti +5n |
| 18 |
.B int *\fIerrorcodeptr\fP, |
.B int *\fIerrorcodeptr\fP, |
| 21 |
.ti +5n |
.ti +5n |
| 22 |
.B const unsigned char *\fItableptr\fP); |
.B const unsigned char *\fItableptr\fP); |
| 23 |
.PP |
.PP |
|
.br |
|
| 24 |
.B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP, |
.B pcre_extra *pcre_study(const pcre *\fIcode\fP, int \fIoptions\fP, |
| 25 |
.ti +5n |
.ti +5n |
| 26 |
.B const char **\fIerrptr\fP); |
.B const char **\fIerrptr\fP); |
| 27 |
.PP |
.PP |
|
.br |
|
| 28 |
.B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
.B int pcre_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 29 |
.ti +5n |
.ti +5n |
| 30 |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 31 |
.ti +5n |
.ti +5n |
| 32 |
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP); |
.B int \fIoptions\fP, int *\fIovector\fP, int \fIovecsize\fP); |
| 33 |
.PP |
.PP |
|
.br |
|
| 34 |
.B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
.B int pcre_dfa_exec(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 35 |
.ti +5n |
.ti +5n |
| 36 |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
.B "const char *\fIsubject\fP," int \fIlength\fP, int \fIstartoffset\fP, |
| 39 |
.ti +5n |
.ti +5n |
| 40 |
.B int *\fIworkspace\fP, int \fIwscount\fP); |
.B int *\fIworkspace\fP, int \fIwscount\fP); |
| 41 |
.PP |
.PP |
|
.br |
|
| 42 |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
| 43 |
.ti +5n |
.ti +5n |
| 44 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 47 |
.ti +5n |
.ti +5n |
| 48 |
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
| 49 |
.PP |
.PP |
|
.br |
|
| 50 |
.B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
.B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 51 |
.ti +5n |
.ti +5n |
| 52 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP, |
.B int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP, |
| 53 |
.ti +5n |
.ti +5n |
| 54 |
.B int \fIbuffersize\fP); |
.B int \fIbuffersize\fP); |
| 55 |
.PP |
.PP |
|
.br |
|
| 56 |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
| 57 |
.ti +5n |
.ti +5n |
| 58 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 61 |
.ti +5n |
.ti +5n |
| 62 |
.B const char **\fIstringptr\fP); |
.B const char **\fIstringptr\fP); |
| 63 |
.PP |
.PP |
|
.br |
|
| 64 |
.B int pcre_get_stringnumber(const pcre *\fIcode\fP, |
.B int pcre_get_stringnumber(const pcre *\fIcode\fP, |
| 65 |
.ti +5n |
.ti +5n |
| 66 |
.B const char *\fIname\fP); |
.B const char *\fIname\fP); |
| 67 |
.PP |
.PP |
| 68 |
.br |
.B int pcre_get_stringtable_entries(const pcre *\fIcode\fP, |
| 69 |
|
.ti +5n |
| 70 |
|
.B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP); |
| 71 |
|
.PP |
| 72 |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 73 |
.ti +5n |
.ti +5n |
| 74 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
| 75 |
.ti +5n |
.ti +5n |
| 76 |
.B const char **\fIstringptr\fP); |
.B const char **\fIstringptr\fP); |
| 77 |
.PP |
.PP |
|
.br |
|
| 78 |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
| 79 |
.ti +5n |
.ti +5n |
| 80 |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
| 81 |
.PP |
.PP |
|
.br |
|
| 82 |
.B void pcre_free_substring(const char *\fIstringptr\fP); |
.B void pcre_free_substring(const char *\fIstringptr\fP); |
| 83 |
.PP |
.PP |
|
.br |
|
| 84 |
.B void pcre_free_substring_list(const char **\fIstringptr\fP); |
.B void pcre_free_substring_list(const char **\fIstringptr\fP); |
| 85 |
.PP |
.PP |
|
.br |
|
| 86 |
.B const unsigned char *pcre_maketables(void); |
.B const unsigned char *pcre_maketables(void); |
| 87 |
.PP |
.PP |
|
.br |
|
| 88 |
.B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
.B int pcre_fullinfo(const pcre *\fIcode\fP, "const pcre_extra *\fIextra\fP," |
| 89 |
.ti +5n |
.ti +5n |
| 90 |
.B int \fIwhat\fP, void *\fIwhere\fP); |
.B int \fIwhat\fP, void *\fIwhere\fP); |
| 91 |
.PP |
.PP |
|
.br |
|
| 92 |
.B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int |
.B int pcre_info(const pcre *\fIcode\fP, int *\fIoptptr\fP, int |
| 93 |
.B *\fIfirstcharptr\fP); |
.B *\fIfirstcharptr\fP); |
| 94 |
.PP |
.PP |
|
.br |
|
| 95 |
.B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP); |
.B int pcre_refcount(pcre *\fIcode\fP, int \fIadjust\fP); |
| 96 |
.PP |
.PP |
|
.br |
|
| 97 |
.B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); |
.B int pcre_config(int \fIwhat\fP, void *\fIwhere\fP); |
| 98 |
.PP |
.PP |
|
.br |
|
| 99 |
.B char *pcre_version(void); |
.B char *pcre_version(void); |
| 100 |
.PP |
.PP |
|
.br |
|
| 101 |
.B void *(*pcre_malloc)(size_t); |
.B void *(*pcre_malloc)(size_t); |
| 102 |
.PP |
.PP |
|
.br |
|
| 103 |
.B void (*pcre_free)(void *); |
.B void (*pcre_free)(void *); |
| 104 |
.PP |
.PP |
|
.br |
|
| 105 |
.B void *(*pcre_stack_malloc)(size_t); |
.B void *(*pcre_stack_malloc)(size_t); |
| 106 |
.PP |
.PP |
|
.br |
|
| 107 |
.B void (*pcre_stack_free)(void *); |
.B void (*pcre_stack_free)(void *); |
| 108 |
.PP |
.PP |
|
.br |
|
| 109 |
.B int (*pcre_callout)(pcre_callout_block *); |
.B int (*pcre_callout)(pcre_callout_block *); |
| 110 |
. |
. |
| 111 |
. |
. |
| 112 |
.SH "PCRE API OVERVIEW" |
.SH "PCRE API OVERVIEW" |
| 113 |
.rs |
.rs |
| 114 |
.sp |
.sp |
| 115 |
PCRE has its own native API, which is described in this document. There is |
PCRE has its own native API, which is described in this document. There are |
| 116 |
also a set of wrapper functions that correspond to the POSIX regular expression |
also some wrapper functions that correspond to the POSIX regular expression |
| 117 |
API. These are described in the |
API. These are described in the |
| 118 |
.\" HREF |
.\" HREF |
| 119 |
\fBpcreposix\fP |
\fBpcreposix\fP |
| 144 |
.P |
.P |
| 145 |
A second matching function, \fBpcre_dfa_exec()\fP, which is not |
A second matching function, \fBpcre_dfa_exec()\fP, which is not |
| 146 |
Perl-compatible, is also provided. This uses a different algorithm for the |
Perl-compatible, is also provided. This uses a different algorithm for the |
| 147 |
matching. This allows it to find all possible matches (at a given point in the |
matching. The alternative algorithm finds all possible matches (at a given |
| 148 |
subject), not just one. However, this algorithm does not return captured |
point in the subject), and scans the subject just once. However, this algorithm |
| 149 |
substrings. A description of the two matching algorithms and their advantages |
does not return captured substrings. A description of the two matching |
| 150 |
and disadvantages is given in the |
algorithms and their advantages and disadvantages is given in the |
| 151 |
.\" HREF |
.\" HREF |
| 152 |
\fBpcrematching\fP |
\fBpcrematching\fP |
| 153 |
.\" |
.\" |
| 163 |
\fBpcre_get_named_substring()\fP |
\fBpcre_get_named_substring()\fP |
| 164 |
\fBpcre_get_substring_list()\fP |
\fBpcre_get_substring_list()\fP |
| 165 |
\fBpcre_get_stringnumber()\fP |
\fBpcre_get_stringnumber()\fP |
| 166 |
|
\fBpcre_get_stringtable_entries()\fP |
| 167 |
.sp |
.sp |
| 168 |
\fBpcre_free_substring()\fP and \fBpcre_free_substring_list()\fP are also |
\fBpcre_free_substring()\fP and \fBpcre_free_substring_list()\fP are also |
| 169 |
provided, to free the memory used for extracted strings. |
provided, to free the memory used for extracted strings. |
| 193 |
The global variables \fBpcre_stack_malloc\fP and \fBpcre_stack_free\fP are also |
The global variables \fBpcre_stack_malloc\fP and \fBpcre_stack_free\fP are also |
| 194 |
indirections to memory management functions. These special functions are used |
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 |
only when PCRE is compiled to use the heap for remembering data, instead of |
| 196 |
recursive function calls, when running the \fBpcre_exec()\fP function. This is |
recursive function calls, when running the \fBpcre_exec()\fP function. See the |
| 197 |
a non-standard way of building PCRE, for use in environments that have limited |
.\" HREF |
| 198 |
stacks. Because of the greater use of memory management, it runs more slowly. |
\fBpcrebuild\fP |
| 199 |
Separate functions are provided so that special-purpose external code can be |
.\" |
| 200 |
used for this case. When used, these functions are always called in a |
documentation for details of how to do this. It is a non-standard way of |
| 201 |
stack-like manner (last obtained, first freed), and always for memory blocks of |
building PCRE, for use in environments that have limited stacks. Because of the |
| 202 |
the same size. |
greater use of memory management, it runs more slowly. Separate functions are |
| 203 |
|
provided so that special-purpose external code can be used for this case. When |
| 204 |
|
used, these functions are always called in a stack-like manner (last obtained, |
| 205 |
|
first freed), and always for memory blocks of the same size. There is a |
| 206 |
|
discussion about PCRE's stack usage in the |
| 207 |
|
.\" HREF |
| 208 |
|
\fBpcrestack\fP |
| 209 |
|
.\" |
| 210 |
|
documentation. |
| 211 |
.P |
.P |
| 212 |
The global variable \fBpcre_callout\fP initially contains NULL. It can be set |
The global variable \fBpcre_callout\fP initially contains NULL. It can be set |
| 213 |
by the caller to a "callout" function, which PCRE will then call at specified |
by the caller to a "callout" function, which PCRE will then call at specified |
| 218 |
documentation. |
documentation. |
| 219 |
. |
. |
| 220 |
. |
. |
| 221 |
|
.\" HTML <a name="newlines"></a> |
| 222 |
|
.SH NEWLINES |
| 223 |
|
.rs |
| 224 |
|
.sp |
| 225 |
|
PCRE supports five different conventions for indicating line breaks in |
| 226 |
|
strings: a single CR (carriage return) character, a single LF (linefeed) |
| 227 |
|
character, the two-character sequence CRLF, any of the three preceding, or any |
| 228 |
|
Unicode newline sequence. The Unicode newline sequences are the three just |
| 229 |
|
mentioned, plus the single characters VT (vertical tab, U+000B), FF (formfeed, |
| 230 |
|
U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS |
| 231 |
|
(paragraph separator, U+2029). |
| 232 |
|
.P |
| 233 |
|
Each of the first three conventions is used by at least one operating system as |
| 234 |
|
its standard newline sequence. When PCRE is built, a default can be specified. |
| 235 |
|
The default default is LF, which is the Unix standard. When PCRE is run, the |
| 236 |
|
default can be overridden, either when a pattern is compiled, or when it is |
| 237 |
|
matched. |
| 238 |
|
.P |
| 239 |
|
At compile time, the newline convention can be specified by the \fIoptions\fP |
| 240 |
|
argument of \fBpcre_compile()\fP, or it can be specified by special text at the |
| 241 |
|
start of the pattern itself; this overrides any other settings. See the |
| 242 |
|
.\" HREF |
| 243 |
|
\fBpcrepattern\fP |
| 244 |
|
.\" |
| 245 |
|
page for details of the special character sequences. |
| 246 |
|
.P |
| 247 |
|
In the PCRE documentation the word "newline" is used to mean "the character or |
| 248 |
|
pair of characters that indicate a line break". The choice of newline |
| 249 |
|
convention affects the handling of the dot, circumflex, and dollar |
| 250 |
|
metacharacters, the handling of #-comments in /x mode, and, when CRLF is a |
| 251 |
|
recognized line ending sequence, the match position advancement for a |
| 252 |
|
non-anchored pattern. There is more detail about this in the |
| 253 |
|
.\" HTML <a href="#execoptions"> |
| 254 |
|
.\" </a> |
| 255 |
|
section on \fBpcre_exec()\fP options |
| 256 |
|
.\" |
| 257 |
|
below. |
| 258 |
|
.P |
| 259 |
|
The choice of newline convention does not affect the interpretation of |
| 260 |
|
the \en or \er escape sequences, nor does it affect what \eR matches, which is |
| 261 |
|
controlled in a similar way, but by separate options. |
| 262 |
|
. |
| 263 |
|
. |
| 264 |
.SH MULTITHREADING |
.SH MULTITHREADING |
| 265 |
.rs |
.rs |
| 266 |
.sp |
.sp |
| 282 |
.\" HREF |
.\" HREF |
| 283 |
\fBpcreprecompile\fP |
\fBpcreprecompile\fP |
| 284 |
.\" |
.\" |
| 285 |
documentation. |
documentation. However, compiling a regular expression with one version of PCRE |
| 286 |
|
for use with a different version is not guaranteed to work and may cause |
| 287 |
|
crashes. |
| 288 |
. |
. |
| 289 |
. |
. |
| 290 |
.SH "CHECKING BUILD-TIME OPTIONS" |
.SH "CHECKING BUILD-TIME OPTIONS" |
| 315 |
.sp |
.sp |
| 316 |
PCRE_CONFIG_NEWLINE |
PCRE_CONFIG_NEWLINE |
| 317 |
.sp |
.sp |
| 318 |
The output is an integer that is set to the value of the code that is used for |
The output is an integer whose value specifies the default character sequence |
| 319 |
the newline character. It is either linefeed (10) or carriage return (13), and |
that is recognized as meaning "newline". The four values that are supported |
| 320 |
should normally be the standard character for your operating system. |
are: 10 for LF, 13 for CR, 3338 for CRLF, -2 for ANYCRLF, and -1 for ANY. The |
| 321 |
|
default should normally be the standard sequence for your operating system. |
| 322 |
|
.sp |
| 323 |
|
PCRE_CONFIG_BSR |
| 324 |
|
.sp |
| 325 |
|
The output is an integer whose value indicates what character sequences the \eR |
| 326 |
|
escape sequence matches by default. A value of 0 means that \eR matches any |
| 327 |
|
Unicode line ending sequence; a value of 1 means that \eR matches only CR, LF, |
| 328 |
|
or CRLF. The default can be overridden when a pattern is compiled or matched. |
| 329 |
.sp |
.sp |
| 330 |
PCRE_CONFIG_LINK_SIZE |
PCRE_CONFIG_LINK_SIZE |
| 331 |
.sp |
.sp |
| 351 |
internal matching function calls in a \fBpcre_exec()\fP execution. Further |
internal matching function calls in a \fBpcre_exec()\fP execution. Further |
| 352 |
details are given with \fBpcre_exec()\fP below. |
details are given with \fBpcre_exec()\fP below. |
| 353 |
.sp |
.sp |
| 354 |
|
PCRE_CONFIG_MATCH_LIMIT_RECURSION |
| 355 |
|
.sp |
| 356 |
|
The output is an integer that gives the default limit for the depth of |
| 357 |
|
recursion when calling the internal matching function in a \fBpcre_exec()\fP |
| 358 |
|
execution. Further details are given with \fBpcre_exec()\fP below. |
| 359 |
|
.sp |
| 360 |
PCRE_CONFIG_STACKRECURSE |
PCRE_CONFIG_STACKRECURSE |
| 361 |
.sp |
.sp |
| 362 |
The output is an integer that is set to one if internal recursion when running |
The output is an integer that is set to one if internal recursion when running |
| 395 |
via \fBpcre_malloc\fP is returned. This contains the compiled code and related |
via \fBpcre_malloc\fP is returned. This contains the compiled code and related |
| 396 |
data. The \fBpcre\fP type is defined for the returned block; this is a typedef |
data. The \fBpcre\fP type is defined for the returned block; this is a typedef |
| 397 |
for a structure whose contents are not externally defined. It is up to the |
for a structure whose contents are not externally defined. It is up to the |
| 398 |
caller to free the memory when it is no longer required. |
caller to free the memory (via \fBpcre_free\fP) when it is no longer required. |
| 399 |
.P |
.P |
| 400 |
Although the compiled code of a PCRE regex is relocatable, that is, it does not |
Although the compiled code of a PCRE regex is relocatable, that is, it does not |
| 401 |
depend on memory location, the complete \fBpcre\fP data block is not |
depend on memory location, the complete \fBpcre\fP data block is not |
| 402 |
fully relocatable, because it may contain a copy of the \fItableptr\fP |
fully relocatable, because it may contain a copy of the \fItableptr\fP |
| 403 |
argument, which is an address (see below). |
argument, which is an address (see below). |
| 404 |
.P |
.P |
| 405 |
The \fIoptions\fP argument contains independent bits that affect the |
The \fIoptions\fP argument contains various bit settings that affect the |
| 406 |
compilation. It should be zero if no options are required. The available |
compilation. It should be zero if no options are required. The available |
| 407 |
options are described below. Some of them, in particular, those that are |
options are described below. Some of them, in particular, those that are |
| 408 |
compatible with Perl, can also be set and unset from within the pattern (see |
compatible with Perl, can also be set and unset from within the pattern (see |
| 412 |
.\" |
.\" |
| 413 |
documentation). For these options, the contents of the \fIoptions\fP argument |
documentation). For these options, the contents of the \fIoptions\fP argument |
| 414 |
specifies their initial settings at the start of compilation and execution. The |
specifies their initial settings at the start of compilation and execution. The |
| 415 |
PCRE_ANCHORED option can be set at the time of matching as well as at compile |
PCRE_ANCHORED and PCRE_NEWLINE_\fIxxx\fP options can be set at the time of |
| 416 |
time. |
matching as well as at compile time. |
| 417 |
.P |
.P |
| 418 |
If \fIerrptr\fP is NULL, \fBpcre_compile()\fP returns NULL immediately. |
If \fIerrptr\fP is NULL, \fBpcre_compile()\fP returns NULL immediately. |
| 419 |
Otherwise, if compilation of a pattern fails, \fBpcre_compile()\fP returns |
Otherwise, if compilation of a pattern fails, \fBpcre_compile()\fP returns |
| 420 |
NULL, and sets the variable pointed to by \fIerrptr\fP to point to a textual |
NULL, and sets the variable pointed to by \fIerrptr\fP to point to a textual |
| 421 |
error message. The offset from the start of the pattern to the character where |
error message. This is a static string that is part of the library. You must |
| 422 |
the error was discovered is placed in the variable pointed to by |
not try to free it. The offset from the start of the pattern to the character |
| 423 |
|
where the error was discovered is placed in the variable pointed to by |
| 424 |
\fIerroffset\fP, which must not be NULL. If it is, an immediate error is given. |
\fIerroffset\fP, which must not be NULL. If it is, an immediate error is given. |
| 425 |
.P |
.P |
| 426 |
If \fBpcre_compile2()\fP is used instead of \fBpcre_compile()\fP, and the |
If \fBpcre_compile2()\fP is used instead of \fBpcre_compile()\fP, and the |
| 468 |
.\" |
.\" |
| 469 |
documentation. |
documentation. |
| 470 |
.sp |
.sp |
| 471 |
|
PCRE_BSR_ANYCRLF |
| 472 |
|
PCRE_BSR_UNICODE |
| 473 |
|
.sp |
| 474 |
|
These options (which are mutually exclusive) control what the \eR escape |
| 475 |
|
sequence matches. The choice is either to match only CR, LF, or CRLF, or to |
| 476 |
|
match any Unicode newline sequence. The default is specified when PCRE is |
| 477 |
|
built. It can be overridden from within the pattern, or by setting an option |
| 478 |
|
when a compiled pattern is matched. |
| 479 |
|
.sp |
| 480 |
PCRE_CASELESS |
PCRE_CASELESS |
| 481 |
.sp |
.sp |
| 482 |
If this bit is set, letters in the pattern match both upper and lower case |
If this bit is set, letters in the pattern match both upper and lower case |
| 493 |
.sp |
.sp |
| 494 |
If this bit is set, a dollar metacharacter in the pattern matches only at the |
If this bit is set, a dollar metacharacter in the pattern matches only at the |
| 495 |
end of the subject string. Without this option, a dollar also matches |
end of the subject string. Without this option, a dollar also matches |
| 496 |
immediately before the final character if it is a newline (but not before any |
immediately before a newline at the end of the string (but not before any other |
| 497 |
other newlines). The PCRE_DOLLAR_ENDONLY option is ignored if PCRE_MULTILINE is |
newlines). The PCRE_DOLLAR_ENDONLY option is ignored if PCRE_MULTILINE is set. |
| 498 |
set. There is no equivalent to this option in Perl, and no way to set it within |
There is no equivalent to this option in Perl, and no way to set it within a |
| 499 |
a pattern. |
pattern. |
| 500 |
.sp |
.sp |
| 501 |
PCRE_DOTALL |
PCRE_DOTALL |
| 502 |
.sp |
.sp |
| 503 |
If this bit is set, a dot metacharater in the pattern matches all characters, |
If this bit is set, a dot metacharater in the pattern matches all characters, |
| 504 |
including newlines. Without it, newlines are excluded. This option is |
including those that indicate newline. Without it, a dot does not match when |
| 505 |
equivalent to Perl's /s option, and it can be changed within a pattern by a |
the current position is at a newline. This option is equivalent to Perl's /s |
| 506 |
(?s) option setting. A negative class such as [^a] always matches a newline |
option, and it can be changed within a pattern by a (?s) option setting. A |
| 507 |
character, independent of the setting of this option. |
negative class such as [^a] always matches newline characters, independent of |
| 508 |
|
the setting of this option. |
| 509 |
|
.sp |
| 510 |
|
PCRE_DUPNAMES |
| 511 |
|
.sp |
| 512 |
|
If this bit is set, names used to identify capturing subpatterns need not be |
| 513 |
|
unique. This can be helpful for certain types of pattern when it is known that |
| 514 |
|
only one instance of the named subpattern can ever be matched. There are more |
| 515 |
|
details of named subpatterns below; see also the |
| 516 |
|
.\" HREF |
| 517 |
|
\fBpcrepattern\fP |
| 518 |
|
.\" |
| 519 |
|
documentation. |
| 520 |
.sp |
.sp |
| 521 |
PCRE_EXTENDED |
PCRE_EXTENDED |
| 522 |
.sp |
.sp |
| 523 |
If this bit is set, whitespace data characters in the pattern are totally |
If this bit is set, whitespace data characters in the pattern are totally |
| 524 |
ignored except when escaped or inside a character class. Whitespace does not |
ignored except when escaped or inside a character class. Whitespace does not |
| 525 |
include the VT character (code 11). In addition, characters between an |
include the VT character (code 11). In addition, characters between an |
| 526 |
unescaped # outside a character class and the next newline character, |
unescaped # outside a character class and the next newline, inclusive, are also |
| 527 |
inclusive, are also ignored. This is equivalent to Perl's /x option, and it can |
ignored. This is equivalent to Perl's /x option, and it can be changed within a |
| 528 |
be changed within a pattern by a (?x) option setting. |
pattern by a (?x) option setting. |
| 529 |
.P |
.P |
| 530 |
This option makes it possible to include comments inside complicated patterns. |
This option makes it possible to include comments inside complicated patterns. |
| 531 |
Note, however, that this applies only to data characters. Whitespace characters |
Note, however, that this applies only to data characters. Whitespace characters |
| 539 |
set, any backslash in a pattern that is followed by a letter that has no |
set, any backslash in a pattern that is followed by a letter that has no |
| 540 |
special meaning causes an error, thus reserving these combinations for future |
special meaning causes an error, thus reserving these combinations for future |
| 541 |
expansion. By default, as in Perl, a backslash followed by a letter with no |
expansion. By default, as in Perl, a backslash followed by a letter with no |
| 542 |
special meaning is treated as a literal. There are at present no other features |
special meaning is treated as a literal. (Perl can, however, be persuaded to |
| 543 |
controlled by this option. It can also be set by a (?X) option setting within a |
give a warning for this.) There are at present no other features controlled by |
| 544 |
pattern. |
this option. It can also be set by a (?X) option setting within a pattern. |
| 545 |
.sp |
.sp |
| 546 |
PCRE_FIRSTLINE |
PCRE_FIRSTLINE |
| 547 |
.sp |
.sp |
| 548 |
If this option is set, an unanchored pattern is required to match before or at |
If this option is set, an unanchored pattern is required to match before or at |
| 549 |
the first newline character in the subject string, though the matched text may |
the first newline in the subject string, though the matched text may continue |
| 550 |
continue over the newline. |
over the newline. |
| 551 |
.sp |
.sp |
| 552 |
PCRE_MULTILINE |
PCRE_MULTILINE |
| 553 |
.sp |
.sp |
| 559 |
Perl. |
Perl. |
| 560 |
.P |
.P |
| 561 |
When PCRE_MULTILINE it is set, the "start of line" and "end of line" constructs |
When PCRE_MULTILINE it is set, the "start of line" and "end of line" constructs |
| 562 |
match immediately following or immediately before any newline in the subject |
match immediately following or immediately before internal newlines in the |
| 563 |
string, respectively, as well as at the very start and end. This is equivalent |
subject string, respectively, as well as at the very start and end. This is |
| 564 |
to Perl's /m option, and it can be changed within a pattern by a (?m) option |
equivalent to Perl's /m option, and it can be changed within a pattern by a |
| 565 |
setting. If there are no "\en" characters in a subject string, or no |
(?m) option setting. If there are no newlines in a subject string, or no |
| 566 |
occurrences of ^ or $ in a pattern, setting PCRE_MULTILINE has no effect. |
occurrences of ^ or $ in a pattern, setting PCRE_MULTILINE has no effect. |
| 567 |
.sp |
.sp |
| 568 |
|
PCRE_NEWLINE_CR |
| 569 |
|
PCRE_NEWLINE_LF |
| 570 |
|
PCRE_NEWLINE_CRLF |
| 571 |
|
PCRE_NEWLINE_ANYCRLF |
| 572 |
|
PCRE_NEWLINE_ANY |
| 573 |
|
.sp |
| 574 |
|
These options override the default newline definition that was chosen when PCRE |
| 575 |
|
was built. Setting the first or the second specifies that a newline is |
| 576 |
|
indicated by a single character (CR or LF, respectively). Setting |
| 577 |
|
PCRE_NEWLINE_CRLF specifies that a newline is indicated by the two-character |
| 578 |
|
CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies that any of the three |
| 579 |
|
preceding sequences should be recognized. Setting PCRE_NEWLINE_ANY specifies |
| 580 |
|
that any Unicode newline sequence should be recognized. The Unicode newline |
| 581 |
|
sequences are the three just mentioned, plus the single characters VT (vertical |
| 582 |
|
tab, U+000B), FF (formfeed, U+000C), NEL (next line, U+0085), LS (line |
| 583 |
|
separator, U+2028), and PS (paragraph separator, U+2029). The last two are |
| 584 |
|
recognized only in UTF-8 mode. |
| 585 |
|
.P |
| 586 |
|
The newline setting in the options word uses three bits that are treated |
| 587 |
|
as a number, giving eight possibilities. Currently only six are used (default |
| 588 |
|
plus the five values above). This means that if you set more than one newline |
| 589 |
|
option, the combination may or may not be sensible. For example, |
| 590 |
|
PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to PCRE_NEWLINE_CRLF, but |
| 591 |
|
other combinations may yield unused numbers and cause an error. |
| 592 |
|
.P |
| 593 |
|
The only time that a line break is specially recognized when compiling a |
| 594 |
|
pattern is if PCRE_EXTENDED is set, and an unescaped # outside a character |
| 595 |
|
class is encountered. This indicates a comment that lasts until after the next |
| 596 |
|
line break sequence. In other circumstances, line break sequences are treated |
| 597 |
|
as literal data, except that in PCRE_EXTENDED mode, both CR and LF are treated |
| 598 |
|
as whitespace characters and are therefore ignored. |
| 599 |
|
.P |
| 600 |
|
The newline option that is set at compile time becomes the default that is used |
| 601 |
|
for \fBpcre_exec()\fP and \fBpcre_dfa_exec()\fP, but it can be overridden. |
| 602 |
|
.sp |
| 603 |
PCRE_NO_AUTO_CAPTURE |
PCRE_NO_AUTO_CAPTURE |
| 604 |
.sp |
.sp |
| 605 |
If this option is set, it disables the use of numbered capturing parentheses in |
If this option is set, it disables the use of numbered capturing parentheses in |
| 634 |
PCRE_NO_UTF8_CHECK |
PCRE_NO_UTF8_CHECK |
| 635 |
.sp |
.sp |
| 636 |
When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is |
When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is |
| 637 |
automatically checked. If an invalid UTF-8 sequence of bytes is found, |
automatically checked. There is a discussion about the |
| 638 |
\fBpcre_compile()\fP returns an error. If you already know that your pattern is |
.\" HTML <a href="pcre.html#utf8strings"> |
| 639 |
valid, and you want to skip this check for performance reasons, you can set the |
.\" </a> |
| 640 |
PCRE_NO_UTF8_CHECK option. When it is set, the effect of passing an invalid |
validity of UTF-8 strings |
| 641 |
UTF-8 string as a pattern is undefined. It may cause your program to crash. |
.\" |
| 642 |
Note that this option can also be passed to \fBpcre_exec()\fP and |
in the main |
| 643 |
\fBpcre_dfa_exec()\fP, to suppress the UTF-8 validity checking of subject |
.\" HREF |
| 644 |
strings. |
\fBpcre\fP |
| 645 |
|
.\" |
| 646 |
|
page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_compile()\fP |
| 647 |
|
returns an error. If you already know that your pattern is valid, and you want |
| 648 |
|
to skip this check for performance reasons, you can set the PCRE_NO_UTF8_CHECK |
| 649 |
|
option. When it is set, the effect of passing an invalid UTF-8 string as a |
| 650 |
|
pattern is undefined. It may cause your program to crash. Note that this option |
| 651 |
|
can also be passed to \fBpcre_exec()\fP and \fBpcre_dfa_exec()\fP, to suppress |
| 652 |
|
the UTF-8 validity checking of subject strings. |
| 653 |
. |
. |
| 654 |
. |
. |
| 655 |
.SH "COMPILATION ERROR CODES" |
.SH "COMPILATION ERROR CODES" |
| 657 |
.sp |
.sp |
| 658 |
The following table lists the error codes than may be returned by |
The following table lists the error codes than may be returned by |
| 659 |
\fBpcre_compile2()\fP, along with the error messages that may be returned by |
\fBpcre_compile2()\fP, along with the error messages that may be returned by |
| 660 |
both compiling functions. |
both compiling functions. As PCRE has developed, some error codes have fallen |
| 661 |
|
out of use. To avoid confusion, they have not been re-used. |
| 662 |
.sp |
.sp |
| 663 |
0 no error |
0 no error |
| 664 |
1 \e at end of pattern |
1 \e at end of pattern |
| 670 |
7 invalid escape sequence in character class |
7 invalid escape sequence in character class |
| 671 |
8 range out of order in character class |
8 range out of order in character class |
| 672 |
9 nothing to repeat |
9 nothing to repeat |
| 673 |
10 operand of unlimited repeat could match the empty string |
10 [this code is not in use] |
| 674 |
11 internal error: unexpected repeat |
11 internal error: unexpected repeat |
| 675 |
12 unrecognized character after (? |
12 unrecognized character after (? |
| 676 |
13 POSIX named classes are supported only within a class |
13 POSIX named classes are supported only within a class |
| 679 |
16 erroffset passed as NULL |
16 erroffset passed as NULL |
| 680 |
17 unknown option bit(s) set |
17 unknown option bit(s) set |
| 681 |
18 missing ) after comment |
18 missing ) after comment |
| 682 |
19 parentheses nested too deeply |
19 [this code is not in use] |
| 683 |
20 regular expression too large |
20 regular expression too large |
| 684 |
21 failed to get memory |
21 failed to get memory |
| 685 |
22 unmatched parentheses |
22 unmatched parentheses |
| 686 |
23 internal error: code overflow |
23 internal error: code overflow |
| 687 |
24 unrecognized character after (?< |
24 unrecognized character after (?< |
| 688 |
25 lookbehind assertion is not fixed length |
25 lookbehind assertion is not fixed length |
| 689 |
26 malformed number after (?( |
26 malformed number or name after (?( |
| 690 |
27 conditional group contains more than two branches |
27 conditional group contains more than two branches |
| 691 |
28 assertion expected after (?( |
28 assertion expected after (?( |
| 692 |
29 (?R or (?digits must be followed by ) |
29 (?R or (?[+-]digits must be followed by ) |
| 693 |
30 unknown POSIX class name |
30 unknown POSIX class name |
| 694 |
31 POSIX collating elements are not supported |
31 POSIX collating elements are not supported |
| 695 |
32 this version of PCRE is not compiled with PCRE_UTF8 support |
32 this version of PCRE is not compiled with PCRE_UTF8 support |
| 696 |
33 spare error |
33 [this code is not in use] |
| 697 |
34 character value in \ex{...} sequence is too large |
34 character value in \ex{...} sequence is too large |
| 698 |
35 invalid condition (?(0) |
35 invalid condition (?(0) |
| 699 |
36 \eC not allowed in lookbehind assertion |
36 \eC not allowed in lookbehind assertion |
| 702 |
39 closing ) for (?C expected |
39 closing ) for (?C expected |
| 703 |
40 recursive call could loop indefinitely |
40 recursive call could loop indefinitely |
| 704 |
41 unrecognized character after (?P |
41 unrecognized character after (?P |
| 705 |
42 syntax error after (?P |
42 syntax error in subpattern name (missing terminator) |
| 706 |
43 two named groups have the same name |
43 two named subpatterns have the same name |
| 707 |
44 invalid UTF-8 string |
44 invalid UTF-8 string |
| 708 |
45 support for \eP, \ep, and \eX has not been compiled |
45 support for \eP, \ep, and \eX has not been compiled |
| 709 |
46 malformed \eP or \ep sequence |
46 malformed \eP or \ep sequence |
| 710 |
47 unknown property name after \eP or \ep |
47 unknown property name after \eP or \ep |
| 711 |
|
48 subpattern name is too long (maximum 32 characters) |
| 712 |
|
49 too many named subpatterns (maximum 10,000) |
| 713 |
|
50 [this code is not in use] |
| 714 |
|
51 octal value is greater than \e377 (not in UTF-8 mode) |
| 715 |
|
52 internal error: overran compiling workspace |
| 716 |
|
53 internal error: previously-checked referenced subpattern not found |
| 717 |
|
54 DEFINE group contains more than one branch |
| 718 |
|
55 repeating a DEFINE group is not allowed |
| 719 |
|
56 inconsistent NEWLINE options |
| 720 |
|
57 \eg is not followed by a braced name or an optionally braced |
| 721 |
|
non-zero number |
| 722 |
|
58 (?+ or (?- or (?(+ or (?(- must be followed by a non-zero number |
| 723 |
. |
. |
| 724 |
. |
. |
| 725 |
.SH "STUDYING A PATTERN" |
.SH "STUDYING A PATTERN" |
| 757 |
.P |
.P |
| 758 |
The third argument for \fBpcre_study()\fP is a pointer for an error message. If |
The third argument for \fBpcre_study()\fP is a pointer for an error message. If |
| 759 |
studying succeeds (even if no data is returned), the variable it points to is |
studying succeeds (even if no data is returned), the variable it points to is |
| 760 |
set to NULL. Otherwise it points to a textual error message. You should |
set to NULL. Otherwise it is set to point to a textual error message. This is a |
| 761 |
therefore test the error pointer for NULL after calling \fBpcre_study()\fP, to |
static string that is part of the library. You must not try to free it. You |
| 762 |
be sure that it has run successfully. |
should test the error pointer for NULL after calling \fBpcre_study()\fP, to be |
| 763 |
|
sure that it has run successfully. |
| 764 |
.P |
.P |
| 765 |
This is a typical call to \fBpcre_study\fP(): |
This is a typical call to \fBpcre_study\fP(): |
| 766 |
.sp |
.sp |
| 779 |
.SH "LOCALE SUPPORT" |
.SH "LOCALE SUPPORT" |
| 780 |
.rs |
.rs |
| 781 |
.sp |
.sp |
| 782 |
PCRE handles caseless matching, and determines whether characters are letters |
PCRE handles caseless matching, and determines whether characters are letters, |
| 783 |
digits, or whatever, by reference to a set of tables, indexed by character |
digits, or whatever, by reference to a set of tables, indexed by character |
| 784 |
value. When running in UTF-8 mode, this applies only to characters with codes |
value. When running in UTF-8 mode, this applies only to characters with codes |
| 785 |
less than 128. Higher-valued codes never match escapes such as \ew or \ed, but |
less than 128. Higher-valued codes never match escapes such as \ew or \ed, but |
| 786 |
can be tested with \ep if PCRE is built with Unicode character property |
can be tested with \ep if PCRE is built with Unicode character property |
| 787 |
support. |
support. The use of locales with Unicode is discouraged. If you are handling |
| 788 |
.P |
characters with codes greater than 128, you should either use UTF-8 and |
| 789 |
An internal set of tables is created in the default C locale when PCRE is |
Unicode, or use locales, but not try to mix the two. |
| 790 |
built. This is used when the final argument of \fBpcre_compile()\fP is NULL, |
.P |
| 791 |
and is sufficient for many applications. An alternative set of tables can, |
PCRE contains an internal set of tables that are used when the final argument |
| 792 |
however, be supplied. These may be created in a different locale from the |
of \fBpcre_compile()\fP is NULL. These are sufficient for many applications. |
| 793 |
default. As more and more applications change to using Unicode, the need for |
Normally, the internal tables recognize only ASCII characters. However, when |
| 794 |
this locale support is expected to die away. |
PCRE is built, it is possible to cause the internal tables to be rebuilt in the |
| 795 |
|
default "C" locale of the local system, which may cause them to be different. |
| 796 |
|
.P |
| 797 |
|
The internal tables can always be overridden by tables supplied by the |
| 798 |
|
application that calls PCRE. These may be created in a different locale from |
| 799 |
|
the default. As more and more applications change to using Unicode, the need |
| 800 |
|
for this locale support is expected to die away. |
| 801 |
.P |
.P |
| 802 |
External tables are built by calling the \fBpcre_maketables()\fP function, |
External tables are built by calling the \fBpcre_maketables()\fP function, |
| 803 |
which has no arguments, in the relevant locale. The result can then be passed |
which has no arguments, in the relevant locale. The result can then be passed |
| 810 |
tables = pcre_maketables(); |
tables = pcre_maketables(); |
| 811 |
re = pcre_compile(..., tables); |
re = pcre_compile(..., tables); |
| 812 |
.sp |
.sp |
| 813 |
|
The locale name "fr_FR" is used on Linux and other Unix-like systems; if you |
| 814 |
|
are using Windows, the name for the French locale is "french". |
| 815 |
|
.P |
| 816 |
When \fBpcre_maketables()\fP runs, the tables are built in memory that is |
When \fBpcre_maketables()\fP runs, the tables are built in memory that is |
| 817 |
obtained via \fBpcre_malloc\fP. It is the caller's responsibility to ensure |
obtained via \fBpcre_malloc\fP. It is the caller's responsibility to ensure |
| 818 |
that the memory containing the tables remains available for as long as it is |
that the memory containing the tables remains available for as long as it is |
| 859 |
\fBpcre_fullinfo()\fP, to obtain the length of the compiled pattern: |
\fBpcre_fullinfo()\fP, to obtain the length of the compiled pattern: |
| 860 |
.sp |
.sp |
| 861 |
int rc; |
int rc; |
| 862 |
unsigned long int length; |
size_t length; |
| 863 |
rc = pcre_fullinfo( |
rc = pcre_fullinfo( |
| 864 |
re, /* result of pcre_compile() */ |
re, /* result of pcre_compile() */ |
| 865 |
pe, /* result of pcre_study(), or NULL */ |
pe, /* result of pcre_study(), or NULL */ |
| 891 |
PCRE_INFO_FIRSTBYTE |
PCRE_INFO_FIRSTBYTE |
| 892 |
.sp |
.sp |
| 893 |
Return information about the first byte of any matched string, for a |
Return information about the first byte of any matched string, for a |
| 894 |
non-anchored pattern. (This option used to be called PCRE_INFO_FIRSTCHAR; the |
non-anchored pattern. The fourth argument should point to an \fBint\fP |
| 895 |
old name is still recognized for backwards compatibility.) |
variable. (This option used to be called PCRE_INFO_FIRSTCHAR; the old name is |
| 896 |
|
still recognized for backwards compatibility.) |
| 897 |
.P |
.P |
| 898 |
If there is a fixed first byte, for example, from a pattern such as |
If there is a fixed first byte, for example, from a pattern such as |
| 899 |
(cat|cow|coyote), it is returned in the integer pointed to by \fIwhere\fP. |
(cat|cow|coyote), its value is returned. Otherwise, if either |
|
Otherwise, if either |
|
| 900 |
.sp |
.sp |
| 901 |
(a) the pattern was compiled with the PCRE_MULTILINE option, and every branch |
(a) the pattern was compiled with the PCRE_MULTILINE option, and every branch |
| 902 |
starts with "^", or |
starts with "^", or |
| 915 |
string, a pointer to the table is returned. Otherwise NULL is returned. The |
string, a pointer to the table is returned. Otherwise NULL is returned. The |
| 916 |
fourth argument should point to an \fBunsigned char *\fP variable. |
fourth argument should point to an \fBunsigned char *\fP variable. |
| 917 |
.sp |
.sp |
| 918 |
|
PCRE_INFO_HASCRORLF |
| 919 |
|
.sp |
| 920 |
|
Return 1 if the pattern contains any explicit matches for CR or LF characters, |
| 921 |
|
otherwise 0. The fourth argument should point to an \fBint\fP variable. An |
| 922 |
|
explicit match is either a literal CR or LF character, or \er or \en. |
| 923 |
|
.sp |
| 924 |
|
PCRE_INFO_JCHANGED |
| 925 |
|
.sp |
| 926 |
|
Return 1 if the (?J) option setting is used in the pattern, otherwise 0. The |
| 927 |
|
fourth argument should point to an \fBint\fP variable. The (?J) internal option |
| 928 |
|
setting changes the local PCRE_DUPNAMES option. |
| 929 |
|
.sp |
| 930 |
PCRE_INFO_LASTLITERAL |
PCRE_INFO_LASTLITERAL |
| 931 |
.sp |
.sp |
| 932 |
Return the value of the rightmost literal byte that must exist in any matched |
Return the value of the rightmost literal byte that must exist in any matched |
| 943 |
.sp |
.sp |
| 944 |
PCRE supports the use of named as well as numbered capturing parentheses. The |
PCRE supports the use of named as well as numbered capturing parentheses. The |
| 945 |
names are just an additional way of identifying the parentheses, which still |
names are just an additional way of identifying the parentheses, which still |
| 946 |
acquire numbers. A convenience function called \fBpcre_get_named_substring()\fP |
acquire numbers. Several convenience functions such as |
| 947 |
is provided for extracting an individual captured substring by name. It is also |
\fBpcre_get_named_substring()\fP are provided for extracting captured |
| 948 |
possible to extract the data directly, by first converting the name to a number |
substrings by name. It is also possible to extract the data directly, by first |
| 949 |
in order to access the correct pointers in the output vector (described with |
converting the name to a number in order to access the correct pointers in the |
| 950 |
\fBpcre_exec()\fP below). To do the conversion, you need to use the |
output vector (described with \fBpcre_exec()\fP below). To do the conversion, |
| 951 |
name-to-number map, which is described by these three values. |
you need to use the name-to-number map, which is described by these three |
| 952 |
|
values. |
| 953 |
.P |
.P |
| 954 |
The map consists of a number of fixed-size entries. PCRE_INFO_NAMECOUNT gives |
The map consists of a number of fixed-size entries. PCRE_INFO_NAMECOUNT gives |
| 955 |
the number of entries, and PCRE_INFO_NAMEENTRYSIZE gives the size of each |
the number of entries, and PCRE_INFO_NAMEENTRYSIZE gives the size of each |
| 958 |
entry of the table (a pointer to \fBchar\fP). The first two bytes of each entry |
entry of the table (a pointer to \fBchar\fP). The first two bytes of each entry |
| 959 |
are the number of the capturing parenthesis, most significant byte first. The |
are the number of the capturing parenthesis, most significant byte first. The |
| 960 |
rest of the entry is the corresponding name, zero terminated. The names are in |
rest of the entry is the corresponding name, zero terminated. The names are in |
| 961 |
alphabetical order. For example, consider the following pattern (assume |
alphabetical order. When PCRE_DUPNAMES is set, duplicate names are in order of |
| 962 |
|
their parentheses numbers. For example, consider the following pattern (assume |
| 963 |
PCRE_EXTENDED is set, so white space - including newlines - is ignored): |
PCRE_EXTENDED is set, so white space - including newlines - is ignored): |
| 964 |
.sp |
.sp |
| 965 |
.\" JOIN |
.\" JOIN |
| 966 |
(?P<date> (?P<year>(\ed\ed)?\ed\ed) - |
(?<date> (?<year>(\ed\ed)?\ed\ed) - |
| 967 |
(?P<month>\ed\ed) - (?P<day>\ed\ed) ) |
(?<month>\ed\ed) - (?<day>\ed\ed) ) |
| 968 |
.sp |
.sp |
| 969 |
There are four named subpatterns, so the table has four entries, and each entry |
There are four named subpatterns, so the table has four entries, and each entry |
| 970 |
in the table is eight bytes long. The table is as follows, with non-printing |
in the table is eight bytes long. The table is as follows, with non-printing |
| 976 |
00 02 y e a r 00 ?? |
00 02 y e a r 00 ?? |
| 977 |
.sp |
.sp |
| 978 |
When writing code to extract data from named subpatterns using the |
When writing code to extract data from named subpatterns using the |
| 979 |
name-to-number map, remember that the length of each entry is likely to be |
name-to-number map, remember that the length of the entries is likely to be |
| 980 |
different for each compiled pattern. |
different for each compiled pattern. |
| 981 |
.sp |
.sp |
| 982 |
|
PCRE_INFO_OKPARTIAL |
| 983 |
|
.sp |
| 984 |
|
Return 1 if the pattern can be used for partial matching, otherwise 0. The |
| 985 |
|
fourth argument should point to an \fBint\fP variable. The |
| 986 |
|
.\" HREF |
| 987 |
|
\fBpcrepartial\fP |
| 988 |
|
.\" |
| 989 |
|
documentation lists the restrictions that apply to patterns when partial |
| 990 |
|
matching is used. |
| 991 |
|
.sp |
| 992 |
PCRE_INFO_OPTIONS |
PCRE_INFO_OPTIONS |
| 993 |
.sp |
.sp |
| 994 |
Return a copy of the options with which the pattern was compiled. The fourth |
Return a copy of the options with which the pattern was compiled. The fourth |
| 995 |
argument should point to an \fBunsigned long int\fP variable. These option bits |
argument should point to an \fBunsigned long int\fP variable. These option bits |
| 996 |
are those specified in the call to \fBpcre_compile()\fP, modified by any |
are those specified in the call to \fBpcre_compile()\fP, modified by any |
| 997 |
top-level option settings within the pattern itself. |
top-level option settings at the start of the pattern itself. In other words, |
| 998 |
|
they are the options that will be in force when matching starts. For example, |
| 999 |
|
if the pattern /(?im)abc(?-i)d/ is compiled with the PCRE_EXTENDED option, the |
| 1000 |
|
result is PCRE_CASELESS, PCRE_MULTILINE, and PCRE_EXTENDED. |
| 1001 |
.P |
.P |
| 1002 |
A pattern is automatically anchored by PCRE if all of its top-level |
A pattern is automatically anchored by PCRE if all of its top-level |
| 1003 |
alternatives begin with one of the following: |
alternatives begin with one of the following: |
| 1127 |
If the \fIextra\fP argument is not NULL, it must point to a \fBpcre_extra\fP |
If the \fIextra\fP argument is not NULL, it must point to a \fBpcre_extra\fP |
| 1128 |
data block. The \fBpcre_study()\fP function returns such a block (when it |
data block. The \fBpcre_study()\fP function returns such a block (when it |
| 1129 |
doesn't return NULL), but you can also create one for yourself, and pass |
doesn't return NULL), but you can also create one for yourself, and pass |
| 1130 |
additional information in it. The fields in a \fBpcre_extra\fP block are as |
additional information in it. The \fBpcre_extra\fP block contains the following |
| 1131 |
follows: |
fields (not necessarily in this order): |
| 1132 |
.sp |
.sp |
| 1133 |
unsigned long int \fIflags\fP; |
unsigned long int \fIflags\fP; |
| 1134 |
void *\fIstudy_data\fP; |
void *\fIstudy_data\fP; |
| 1135 |
unsigned long int \fImatch_limit\fP; |
unsigned long int \fImatch_limit\fP; |
| 1136 |
|
unsigned long int \fImatch_limit_recursion\fP; |
| 1137 |
void *\fIcallout_data\fP; |
void *\fIcallout_data\fP; |
| 1138 |
const unsigned char *\fItables\fP; |
const unsigned char *\fItables\fP; |
| 1139 |
.sp |
.sp |
| 1142 |
.sp |
.sp |
| 1143 |
PCRE_EXTRA_STUDY_DATA |
PCRE_EXTRA_STUDY_DATA |
| 1144 |
PCRE_EXTRA_MATCH_LIMIT |
PCRE_EXTRA_MATCH_LIMIT |
| 1145 |
|
PCRE_EXTRA_MATCH_LIMIT_RECURSION |
| 1146 |
PCRE_EXTRA_CALLOUT_DATA |
PCRE_EXTRA_CALLOUT_DATA |
| 1147 |
PCRE_EXTRA_TABLES |
PCRE_EXTRA_TABLES |
| 1148 |
.sp |
.sp |
| 1157 |
classic example is the use of nested unlimited repeats. |
classic example is the use of nested unlimited repeats. |
| 1158 |
.P |
.P |
| 1159 |
Internally, PCRE uses a function called \fBmatch()\fP which it calls repeatedly |
Internally, PCRE uses a function called \fBmatch()\fP which it calls repeatedly |
| 1160 |
(sometimes recursively). The limit is imposed on the number of times this |
(sometimes recursively). The limit set by \fImatch_limit\fP is imposed on the |
| 1161 |
function is called during a match, which has the effect of limiting the amount |
number of times this function is called during a match, which has the effect of |
| 1162 |
of recursion and backtracking that can take place. For patterns that are not |
limiting the amount of backtracking that can take place. For patterns that are |
| 1163 |
anchored, the count starts from zero for each position in the subject string. |
not anchored, the count restarts from zero for each position in the subject |
| 1164 |
|
string. |
| 1165 |
.P |
.P |
| 1166 |
The default limit for the library can be set when PCRE is built; the default |
The default value for the limit can be set when PCRE is built; the default |
| 1167 |
default is 10 million, which handles all but the most extreme cases. You can |
default is 10 million, which handles all but the most extreme cases. You can |
| 1168 |
reduce the default by suppling \fBpcre_exec()\fP with a \fBpcre_extra\fP block |
override the default by suppling \fBpcre_exec()\fP with a \fBpcre_extra\fP |
| 1169 |
in which \fImatch_limit\fP is set to a smaller value, and |
block in which \fImatch_limit\fP is set, and PCRE_EXTRA_MATCH_LIMIT is set in |
| 1170 |
PCRE_EXTRA_MATCH_LIMIT is set in the \fIflags\fP field. If the limit is |
the \fIflags\fP field. If the limit is exceeded, \fBpcre_exec()\fP returns |
| 1171 |
exceeded, \fBpcre_exec()\fP returns PCRE_ERROR_MATCHLIMIT. |
PCRE_ERROR_MATCHLIMIT. |
| 1172 |
|
.P |
| 1173 |
|
The \fImatch_limit_recursion\fP field is similar to \fImatch_limit\fP, but |
| 1174 |
|
instead of limiting the total number of times that \fBmatch()\fP is called, it |
| 1175 |
|
limits the depth of recursion. The recursion depth is a smaller number than the |
| 1176 |
|
total number of calls, because not all calls to \fBmatch()\fP are recursive. |
| 1177 |
|
This limit is of use only if it is set smaller than \fImatch_limit\fP. |
| 1178 |
|
.P |
| 1179 |
|
Limiting the recursion depth limits the amount of stack that can be used, or, |
| 1180 |
|
when PCRE has been compiled to use memory on the heap instead of the stack, the |
| 1181 |
|
amount of heap memory that can be used. |
| 1182 |
|
.P |
| 1183 |
|
The default value for \fImatch_limit_recursion\fP can be set when PCRE is |
| 1184 |
|
built; the default default is the same value as the default for |
| 1185 |
|
\fImatch_limit\fP. You can override the default by suppling \fBpcre_exec()\fP |
| 1186 |
|
with a \fBpcre_extra\fP block in which \fImatch_limit_recursion\fP is set, and |
| 1187 |
|
PCRE_EXTRA_MATCH_LIMIT_RECURSION is set in the \fIflags\fP field. If the limit |
| 1188 |
|
is exceeded, \fBpcre_exec()\fP returns PCRE_ERROR_RECURSIONLIMIT. |
| 1189 |
.P |
.P |
| 1190 |
The \fIpcre_callout\fP field is used in conjunction with the "callout" feature, |
The \fIpcre_callout\fP field is used in conjunction with the "callout" feature, |
| 1191 |
which is described in the |
which is described in the |
| 1208 |
.\" |
.\" |
| 1209 |
documentation for a discussion of saving compiled patterns for later use. |
documentation for a discussion of saving compiled patterns for later use. |
| 1210 |
. |
. |
| 1211 |
|
.\" HTML <a name="execoptions"></a> |
| 1212 |
.SS "Option bits for \fBpcre_exec()\fP" |
.SS "Option bits for \fBpcre_exec()\fP" |
| 1213 |
.rs |
.rs |
| 1214 |
.sp |
.sp |
| 1215 |
The unused bits of the \fIoptions\fP argument for \fBpcre_exec()\fP must be |
The unused bits of the \fIoptions\fP argument for \fBpcre_exec()\fP must be |
| 1216 |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NOTBOL, |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP, |
| 1217 |
PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK and PCRE_PARTIAL. |
PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK and PCRE_PARTIAL. |
| 1218 |
.sp |
.sp |
| 1219 |
PCRE_ANCHORED |
PCRE_ANCHORED |
| 1220 |
.sp |
.sp |
| 1223 |
to be anchored by virtue of its contents, it cannot be made unachored at |
to be anchored by virtue of its contents, it cannot be made unachored at |
| 1224 |
matching time. |
matching time. |
| 1225 |
.sp |
.sp |
| 1226 |
|
PCRE_BSR_ANYCRLF |
| 1227 |
|
PCRE_BSR_UNICODE |
| 1228 |
|
.sp |
| 1229 |
|
These options (which are mutually exclusive) control what the \eR escape |
| 1230 |
|
sequence matches. The choice is either to match only CR, LF, or CRLF, or to |
| 1231 |
|
match any Unicode newline sequence. These options override the choice that was |
| 1232 |
|
made or defaulted when the pattern was compiled. |
| 1233 |
|
.sp |
| 1234 |
|
PCRE_NEWLINE_CR |
| 1235 |
|
PCRE_NEWLINE_LF |
| 1236 |
|
PCRE_NEWLINE_CRLF |
| 1237 |
|
PCRE_NEWLINE_ANYCRLF |
| 1238 |
|
PCRE_NEWLINE_ANY |
| 1239 |
|
.sp |
| 1240 |
|
These options override the newline definition that was chosen or defaulted when |
| 1241 |
|
the pattern was compiled. For details, see the description of |
| 1242 |
|
\fBpcre_compile()\fP above. During matching, the newline choice affects the |
| 1243 |
|
behaviour of the dot, circumflex, and dollar metacharacters. It may also alter |
| 1244 |
|
the way the match position is advanced after a match failure for an unanchored |
| 1245 |
|
pattern. |
| 1246 |
|
.P |
| 1247 |
|
When PCRE_NEWLINE_CRLF, PCRE_NEWLINE_ANYCRLF, or PCRE_NEWLINE_ANY is set, and a |
| 1248 |
|
match attempt for an unanchored pattern fails when the current position is at a |
| 1249 |
|
CRLF sequence, and the pattern contains no explicit matches for CR or LF |
| 1250 |
|
characters, the match position is advanced by two characters instead of one, in |
| 1251 |
|
other words, to after the CRLF. |
| 1252 |
|
.P |
| 1253 |
|
The above rule is a compromise that makes the most common cases work as |
| 1254 |
|
expected. For example, if the pattern is .+A (and the PCRE_DOTALL option is not |
| 1255 |
|
set), it does not match the string "\er\enA" because, after failing at the |
| 1256 |
|
start, it skips both the CR and the LF before retrying. However, the pattern |
| 1257 |
|
[\er\en]A does match that string, because it contains an explicit CR or LF |
| 1258 |
|
reference, and so advances only by one character after the first failure. |
| 1259 |
|
.P |
| 1260 |
|
An explicit match for CR of LF is either a literal appearance of one of those |
| 1261 |
|
characters, or one of the \er or \en escape sequences. Implicit matches such as |
| 1262 |
|
[^X] do not count, nor does \es (which includes CR and LF in the characters |
| 1263 |
|
that it matches). |
| 1264 |
|
.P |
| 1265 |
|
Notwithstanding the above, anomalous effects may still occur when CRLF is a |
| 1266 |
|
valid newline sequence and explicit \er or \en escapes appear in the pattern. |
| 1267 |
|
.sp |
| 1268 |
PCRE_NOTBOL |
PCRE_NOTBOL |
| 1269 |
.sp |
.sp |
| 1270 |
This option specifies that first character of the subject string is not the |
This option specifies that first character of the subject string is not the |
| 1306 |
When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8 |
When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8 |
| 1307 |
string is automatically checked when \fBpcre_exec()\fP is subsequently called. |
string is automatically checked when \fBpcre_exec()\fP is subsequently called. |
| 1308 |
The value of \fIstartoffset\fP is also checked to ensure that it points to the |
The value of \fIstartoffset\fP is also checked to ensure that it points to the |
| 1309 |
start of a UTF-8 character. If an invalid UTF-8 sequence of bytes is found, |
start of a UTF-8 character. There is a discussion about the validity of UTF-8 |
| 1310 |
\fBpcre_exec()\fP returns the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP |
strings in the |
| 1311 |
contains an invalid value, PCRE_ERROR_BADUTF8_OFFSET is returned. |
.\" HTML <a href="pcre.html#utf8strings"> |
| 1312 |
|
.\" </a> |
| 1313 |
|
section on UTF-8 support |
| 1314 |
|
.\" |
| 1315 |
|
in the main |
| 1316 |
|
.\" HREF |
| 1317 |
|
\fBpcre\fP |
| 1318 |
|
.\" |
| 1319 |
|
page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_exec()\fP returns |
| 1320 |
|
the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP contains an invalid value, |
| 1321 |
|
PCRE_ERROR_BADUTF8_OFFSET is returned. |
| 1322 |
.P |
.P |
| 1323 |
If you already know that your subject is valid, and you want to skip these |
If you already know that your subject is valid, and you want to skip these |
| 1324 |
checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when |
checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when |
| 1406 |
first pair, \fIovector[0]\fP and \fIovector[1]\fP, identify the portion of the |
first pair, \fIovector[0]\fP and \fIovector[1]\fP, identify the portion of the |
| 1407 |
subject string matched by the entire pattern. The next pair is used for the |
subject string matched by the entire pattern. The next pair is used for the |
| 1408 |
first capturing subpattern, and so on. The value returned by \fBpcre_exec()\fP |
first capturing subpattern, and so on. The value returned by \fBpcre_exec()\fP |
| 1409 |
is the number of pairs that have been set. If there are no capturing |
is one more than the highest numbered pair that has been set. For example, if |
| 1410 |
subpatterns, the return value from a successful match is 1, indicating that |
two substrings have been captured, the returned value is 3. If there are no |
| 1411 |
just the first pair of offsets has been set. |
capturing subpatterns, the return value from a successful match is 1, |
| 1412 |
.P |
indicating that just the first pair of offsets has been set. |
|
Some convenience functions are provided for extracting the captured substrings |
|
|
as separate strings. These are described in the following section. |
|
|
.P |
|
|
It is possible for an capturing subpattern number \fIn+1\fP to match some |
|
|
part of the subject when subpattern \fIn\fP has not been used at all. For |
|
|
example, if the string "abc" is matched against the pattern (a|(z))(bc) |
|
|
subpatterns 1 and 3 are matched, but 2 is not. When this happens, both offset |
|
|
values corresponding to the unused subpattern are set to -1. |
|
| 1413 |
.P |
.P |
| 1414 |
If a capturing subpattern is matched repeatedly, it is the last portion of the |
If a capturing subpattern is matched repeatedly, it is the last portion of the |
| 1415 |
string that it matched that is returned. |
string that it matched that is returned. |
| 1423 |
has to get additional memory for use during matching. Thus it is usually |
has to get additional memory for use during matching. Thus it is usually |
| 1424 |
advisable to supply an \fIovector\fP. |
advisable to supply an \fIovector\fP. |
| 1425 |
.P |
.P |
| 1426 |
Note that \fBpcre_info()\fP can be used to find out how many capturing |
The \fBpcre_info()\fP function can be used to find out how many capturing |
| 1427 |
subpatterns there are in a compiled pattern. The smallest size for |
subpatterns there are in a compiled pattern. The smallest size for |
| 1428 |
\fIovector\fP that will allow for \fIn\fP captured substrings, in addition to |
\fIovector\fP that will allow for \fIn\fP captured substrings, in addition to |
| 1429 |
the offsets of the substring matched by the whole pattern, is (\fIn\fP+1)*3. |
the offsets of the substring matched by the whole pattern, is (\fIn\fP+1)*3. |
| 1430 |
|
.P |
| 1431 |
|
It is possible for capturing subpattern number \fIn+1\fP to match some part of |
| 1432 |
|
the subject when subpattern \fIn\fP has not been used at all. For example, if |
| 1433 |
|
the string "abc" is matched against the pattern (a|(z))(bc) the return from the |
| 1434 |
|
function is 4, and subpatterns 1 and 3 are matched, but 2 is not. When this |
| 1435 |
|
happens, both values in the offset pairs corresponding to unused subpatterns |
| 1436 |
|
are set to -1. |
| 1437 |
|
.P |
| 1438 |
|
Offset values that correspond to unused subpatterns at the end of the |
| 1439 |
|
expression are also set to -1. For example, if the string "abc" is matched |
| 1440 |
|
against the pattern (abc)(x(yz)?)? subpatterns 2 and 3 are not matched. The |
| 1441 |
|
return from the function is 2, because the highest used capturing subpattern |
| 1442 |
|
number is 1. However, you can refer to the offsets for the second and third |
| 1443 |
|
capturing subpatterns if you wish (assuming the vector is large enough, of |
| 1444 |
|
course). |
| 1445 |
|
.P |
| 1446 |
|
Some convenience functions are provided for extracting the captured substrings |
| 1447 |
|
as separate strings. These are described below. |
| 1448 |
. |
. |
| 1449 |
.\" HTML <a name="errorlist"></a> |
.\" HTML <a name="errorlist"></a> |
| 1450 |
.SS "Return values from \fBpcre_exec()\fP" |
.SS "Error return values from \fBpcre_exec()\fP" |
| 1451 |
.rs |
.rs |
| 1452 |
.sp |
.sp |
| 1453 |
If \fBpcre_exec()\fP fails, it returns a negative number. The following are |
If \fBpcre_exec()\fP fails, it returns a negative number. The following are |
| 1474 |
other endianness. This is the error that PCRE gives when the magic number is |
other endianness. This is the error that PCRE gives when the magic number is |
| 1475 |
not present. |
not present. |
| 1476 |
.sp |
.sp |
| 1477 |
PCRE_ERROR_UNKNOWN_NODE (-5) |
PCRE_ERROR_UNKNOWN_OPCODE (-5) |
| 1478 |
.sp |
.sp |
| 1479 |
While running the pattern match, an unknown item was encountered in the |
While running the pattern match, an unknown item was encountered in the |
| 1480 |
compiled pattern. This error could be caused by a bug in PCRE or by overwriting |
compiled pattern. This error could be caused by a bug in PCRE or by overwriting |
| 1496 |
.sp |
.sp |
| 1497 |
PCRE_ERROR_MATCHLIMIT (-8) |
PCRE_ERROR_MATCHLIMIT (-8) |
| 1498 |
.sp |
.sp |
| 1499 |
The recursion and backtracking limit, as specified by the \fImatch_limit\fP |
The backtracking limit, as specified by the \fImatch_limit\fP field in a |
| 1500 |
field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the |
\fBpcre_extra\fP structure (or defaulted) was reached. See the description |
| 1501 |
description above. |
above. |
| 1502 |
.sp |
.sp |
| 1503 |
PCRE_ERROR_CALLOUT (-9) |
PCRE_ERROR_CALLOUT (-9) |
| 1504 |
.sp |
.sp |
| 1543 |
PCRE_ERROR_BADCOUNT (-15) |
PCRE_ERROR_BADCOUNT (-15) |
| 1544 |
.sp |
.sp |
| 1545 |
This error is given if the value of the \fIovecsize\fP argument is negative. |
This error is given if the value of the \fIovecsize\fP argument is negative. |
| 1546 |
|
.sp |
| 1547 |
|
PCRE_ERROR_RECURSIONLIMIT (-21) |
| 1548 |
|
.sp |
| 1549 |
|
The internal recursion limit, as specified by the \fImatch_limit_recursion\fP |
| 1550 |
|
field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the |
| 1551 |
|
description above. |
| 1552 |
|
.sp |
| 1553 |
|
PCRE_ERROR_BADNEWLINE (-23) |
| 1554 |
|
.sp |
| 1555 |
|
An invalid combination of PCRE_NEWLINE_\fIxxx\fP options was given. |
| 1556 |
|
.P |
| 1557 |
|
Error numbers -16 to -20 and -22 are not used by \fBpcre_exec()\fP. |
| 1558 |
. |
. |
| 1559 |
. |
. |
| 1560 |
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER" |
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER" |
| 1566 |
.ti +5n |
.ti +5n |
| 1567 |
.B int \fIbuffersize\fP); |
.B int \fIbuffersize\fP); |
| 1568 |
.PP |
.PP |
|
.br |
|
| 1569 |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
.B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP, |
| 1570 |
.ti +5n |
.ti +5n |
| 1571 |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
.B int \fIstringcount\fP, int \fIstringnumber\fP, |
| 1572 |
.ti +5n |
.ti +5n |
| 1573 |
.B const char **\fIstringptr\fP); |
.B const char **\fIstringptr\fP); |
| 1574 |
.PP |
.PP |
|
.br |
|
| 1575 |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
.B int pcre_get_substring_list(const char *\fIsubject\fP, |
| 1576 |
.ti +5n |
.ti +5n |
| 1577 |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
.B int *\fIovector\fP, int \fIstringcount\fP, "const char ***\fIlistptr\fP);" |
| 1582 |
\fBpcre_get_substring_list()\fP are provided for extracting captured substrings |
\fBpcre_get_substring_list()\fP are provided for extracting captured substrings |
| 1583 |
as new, separate, zero-terminated strings. These functions identify substrings |
as new, separate, zero-terminated strings. These functions identify substrings |
| 1584 |
by number. The next section describes functions for extracting named |
by number. The next section describes functions for extracting named |
| 1585 |
substrings. A substring that contains a binary zero is correctly extracted and |
substrings. |
| 1586 |
has a further zero added on the end, but the result is not, of course, |
.P |
| 1587 |
a C string. |
A substring that contains a binary zero is correctly extracted and has a |
| 1588 |
|
further zero added on the end, but the result is not, of course, a C string. |
| 1589 |
|
However, you can process such a string by referring to the length that is |
| 1590 |
|
returned by \fBpcre_copy_substring()\fP and \fBpcre_get_substring()\fP. |
| 1591 |
|
Unfortunately, the interface to \fBpcre_get_substring_list()\fP is not adequate |
| 1592 |
|
for handling strings containing binary zeros, because the end of the final |
| 1593 |
|
string is not independently indicated. |
| 1594 |
.P |
.P |
| 1595 |
The first three arguments are the same for all three of these functions: |
The first three arguments are the same for all three of these functions: |
| 1596 |
\fIsubject\fP is the subject string that has just been successfully matched, |
\fIsubject\fP is the subject string that has just been successfully matched, |
| 1610 |
\fIbuffersize\fP, while for \fBpcre_get_substring()\fP a new block of memory is |
\fIbuffersize\fP, while for \fBpcre_get_substring()\fP a new block of memory is |
| 1611 |
obtained via \fBpcre_malloc\fP, and its address is returned via |
obtained via \fBpcre_malloc\fP, and its address is returned via |
| 1612 |
\fIstringptr\fP. The yield of the function is the length of the string, not |
\fIstringptr\fP. The yield of the function is the length of the string, not |
| 1613 |
including the terminating zero, or one of |
including the terminating zero, or one of these error codes: |
| 1614 |
.sp |
.sp |
| 1615 |
PCRE_ERROR_NOMEMORY (-6) |
PCRE_ERROR_NOMEMORY (-6) |
| 1616 |
.sp |
.sp |
| 1626 |
memory that is obtained via \fBpcre_malloc\fP. The address of the memory block |
memory that is obtained via \fBpcre_malloc\fP. The address of the memory block |
| 1627 |
is returned via \fIlistptr\fP, which is also the start of the list of string |
is returned via \fIlistptr\fP, which is also the start of the list of string |
| 1628 |
pointers. The end of the list is marked by a NULL pointer. The yield of the |
pointers. The end of the list is marked by a NULL pointer. The yield of the |
| 1629 |
function is zero if all went well, or |
function is zero if all went well, or the error code |
| 1630 |
.sp |
.sp |
| 1631 |
PCRE_ERROR_NOMEMORY (-6) |
PCRE_ERROR_NOMEMORY (-6) |
| 1632 |
.sp |
.sp |
| 1645 |
\fBpcre_get_substring_list()\fP, respectively. They do nothing more than call |
\fBpcre_get_substring_list()\fP, respectively. They do nothing more than call |
| 1646 |
the function pointed to by \fBpcre_free\fP, which of course could be called |
the function pointed to by \fBpcre_free\fP, which of course could be called |
| 1647 |
directly from a C program. However, PCRE is used in some situations where it is |
directly from a C program. However, PCRE is used in some situations where it is |
| 1648 |
linked via a special interface to another programming language which cannot use |
linked via a special interface to another programming language that cannot use |
| 1649 |
\fBpcre_free\fP directly; it is for these cases that the functions are |
\fBpcre_free\fP directly; it is for these cases that the functions are |
| 1650 |
provided. |
provided. |
| 1651 |
. |
. |
| 1657 |
.ti +5n |
.ti +5n |
| 1658 |
.B const char *\fIname\fP); |
.B const char *\fIname\fP); |
| 1659 |
.PP |
.PP |
|
.br |
|
| 1660 |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
.B int pcre_copy_named_substring(const pcre *\fIcode\fP, |
| 1661 |
.ti +5n |
.ti +5n |
| 1662 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 1665 |
.ti +5n |
.ti +5n |
| 1666 |
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
.B char *\fIbuffer\fP, int \fIbuffersize\fP); |
| 1667 |
.PP |
.PP |
|
.br |
|
| 1668 |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
.B int pcre_get_named_substring(const pcre *\fIcode\fP, |
| 1669 |
.ti +5n |
.ti +5n |
| 1670 |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
.B const char *\fIsubject\fP, int *\fIovector\fP, |
| 1678 |
.sp |
.sp |
| 1679 |
(a+)b(?<xxx>\ed+)... |
(a+)b(?<xxx>\ed+)... |
| 1680 |
.sp |
.sp |
| 1681 |
the number of the subpattern called "xxx" is 2. You can find the number from |
the number of the subpattern called "xxx" is 2. If the name is known to be |
| 1682 |
the name by calling \fBpcre_get_stringnumber()\fP. The first argument is the |
unique (PCRE_DUPNAMES was not set), you can find the number from the name by |
| 1683 |
compiled pattern, and the second is the name. The yield of the function is the |
calling \fBpcre_get_stringnumber()\fP. The first argument is the compiled |
| 1684 |
|
pattern, and the second is the name. The yield of the function is the |
| 1685 |
subpattern number, or PCRE_ERROR_NOSUBSTRING (-7) if there is no subpattern of |
subpattern number, or PCRE_ERROR_NOSUBSTRING (-7) if there is no subpattern of |
| 1686 |
that name. |
that name. |
| 1687 |
.P |
.P |
| 1689 |
functions described in the previous section. For convenience, there are also |
functions described in the previous section. For convenience, there are also |
| 1690 |
two functions that do the whole job. |
two functions that do the whole job. |
| 1691 |
.P |
.P |
| 1692 |
Most of the arguments of \fIpcre_copy_named_substring()\fP and |
Most of the arguments of \fBpcre_copy_named_substring()\fP and |
| 1693 |
\fIpcre_get_named_substring()\fP are the same as those for the similarly named |
\fBpcre_get_named_substring()\fP are the same as those for the similarly named |
| 1694 |
functions that extract by number. As these are described in the previous |
functions that extract by number. As these are described in the previous |
| 1695 |
section, they are not re-described here. There are just two differences: |
section, they are not re-described here. There are just two differences: |
| 1696 |
.P |
.P |
| 1700 |
translation table. |
translation table. |
| 1701 |
.P |
.P |
| 1702 |
These functions call \fBpcre_get_stringnumber()\fP, and if it succeeds, they |
These functions call \fBpcre_get_stringnumber()\fP, and if it succeeds, they |
| 1703 |
then call \fIpcre_copy_substring()\fP or \fIpcre_get_substring()\fP, as |
then call \fBpcre_copy_substring()\fP or \fBpcre_get_substring()\fP, as |
| 1704 |
appropriate. |
appropriate. \fBNOTE:\fP If PCRE_DUPNAMES is set and there are duplicate names, |
| 1705 |
|
the behaviour may not be what you want (see the next section). |
| 1706 |
|
. |
| 1707 |
|
. |
| 1708 |
|
.SH "DUPLICATE SUBPATTERN NAMES" |
| 1709 |
|
.rs |
| 1710 |
|
.sp |
| 1711 |
|
.B int pcre_get_stringtable_entries(const pcre *\fIcode\fP, |
| 1712 |
|
.ti +5n |
| 1713 |
|
.B const char *\fIname\fP, char **\fIfirst\fP, char **\fIlast\fP); |
| 1714 |
|
.PP |
| 1715 |
|
When a pattern is compiled with the PCRE_DUPNAMES option, names for subpatterns |
| 1716 |
|
are not required to be unique. Normally, patterns with duplicate names are such |
| 1717 |
|
that in any one match, only one of the named subpatterns participates. An |
| 1718 |
|
example is shown in the |
| 1719 |
|
.\" HREF |
| 1720 |
|
\fBpcrepattern\fP |
| 1721 |
|
.\" |
| 1722 |
|
documentation. |
| 1723 |
|
.P |
| 1724 |
|
When duplicates are present, \fBpcre_copy_named_substring()\fP and |
| 1725 |
|
\fBpcre_get_named_substring()\fP return the first substring corresponding to |
| 1726 |
|
the given name that is set. If none are set, PCRE_ERROR_NOSUBSTRING (-7) is |
| 1727 |
|
returned; no data is returned. The \fBpcre_get_stringnumber()\fP function |
| 1728 |
|
returns one of the numbers that are associated with the name, but it is not |
| 1729 |
|
defined which it is. |
| 1730 |
|
.P |
| 1731 |
|
If you want to get full details of all captured substrings for a given name, |
| 1732 |
|
you must use the \fBpcre_get_stringtable_entries()\fP function. The first |
| 1733 |
|
argument is the compiled pattern, and the second is the name. The third and |
| 1734 |
|
fourth are pointers to variables which are updated by the function. After it |
| 1735 |
|
has run, they point to the first and last entries in the name-to-number table |
| 1736 |
|
for the given name. The function itself returns the length of each entry, or |
| 1737 |
|
PCRE_ERROR_NOSUBSTRING (-7) if there are none. The format of the table is |
| 1738 |
|
described above in the section entitled \fIInformation about a pattern\fP. |
| 1739 |
|
Given all the relevant entries for the name, you can extract each of their |
| 1740 |
|
numbers, and hence the captured data, if any. |
| 1741 |
. |
. |
| 1742 |
. |
. |
| 1743 |
.SH "FINDING ALL POSSIBLE MATCHES" |
.SH "FINDING ALL POSSIBLE MATCHES" |
| 1775 |
.B int *\fIworkspace\fP, int \fIwscount\fP); |
.B int *\fIworkspace\fP, int \fIwscount\fP); |
| 1776 |
.P |
.P |
| 1777 |
The function \fBpcre_dfa_exec()\fP is called to match a subject string against |
The function \fBpcre_dfa_exec()\fP is called to match a subject string against |
| 1778 |
a compiled pattern, using a "DFA" matching algorithm. This has different |
a compiled pattern, using a matching algorithm that scans the subject string |
| 1779 |
characteristics to the normal algorithm, and is not compatible with Perl. Some |
just once, and does not backtrack. This has different characteristics to the |
| 1780 |
of the features of PCRE patterns are not supported. Nevertheless, there are |
normal algorithm, and is not compatible with Perl. Some of the features of PCRE |
| 1781 |
times when this kind of matching can be useful. For a discussion of the two |
patterns are not supported. Nevertheless, there are times when this kind of |
| 1782 |
matching algorithms, see the |
matching can be useful. For a discussion of the two matching algorithms, see |
| 1783 |
|
the |
| 1784 |
.\" HREF |
.\" HREF |
| 1785 |
\fBpcrematching\fP |
\fBpcrematching\fP |
| 1786 |
.\" |
.\" |
| 1795 |
The two additional arguments provide workspace for the function. The workspace |
The two additional arguments provide workspace for the function. The workspace |
| 1796 |
vector should contain at least 20 elements. It is used for keeping track of |
vector should contain at least 20 elements. It is used for keeping track of |
| 1797 |
multiple paths through the pattern tree. More workspace will be needed for |
multiple paths through the pattern tree. More workspace will be needed for |
| 1798 |
patterns and subjects where there are a lot of possible matches. |
patterns and subjects where there are a lot of potential matches. |
| 1799 |
.P |
.P |
| 1800 |
Here is an example of a simple call to \fBpcre_exec()\fP: |
Here is an example of a simple call to \fBpcre_dfa_exec()\fP: |
| 1801 |
.sp |
.sp |
| 1802 |
int rc; |
int rc; |
| 1803 |
int ovector[10]; |
int ovector[10]; |
| 1804 |
int wspace[20]; |
int wspace[20]; |
| 1805 |
rc = pcre_exec( |
rc = pcre_dfa_exec( |
| 1806 |
re, /* result of pcre_compile() */ |
re, /* result of pcre_compile() */ |
| 1807 |
NULL, /* we didn't study the pattern */ |
NULL, /* we didn't study the pattern */ |
| 1808 |
"some string", /* the subject string */ |
"some string", /* the subject string */ |
| 1818 |
.rs |
.rs |
| 1819 |
.sp |
.sp |
| 1820 |
The unused bits of the \fIoptions\fP argument for \fBpcre_dfa_exec()\fP must be |
The unused bits of the \fIoptions\fP argument for \fBpcre_dfa_exec()\fP must be |
| 1821 |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NOTBOL, |
zero. The only bits that may be set are PCRE_ANCHORED, PCRE_NEWLINE_\fIxxx\fP, |
| 1822 |
PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL, |
PCRE_NOTBOL, PCRE_NOTEOL, PCRE_NOTEMPTY, PCRE_NO_UTF8_CHECK, PCRE_PARTIAL, |
| 1823 |
PCRE_DFA_SHORTEST, and PCRE_DFA_RESTART. All but the last three of these are |
PCRE_DFA_SHORTEST, and PCRE_DFA_RESTART. All but the last three of these are |
| 1824 |
the same as for \fBpcre_exec()\fP, so their description is not repeated here. |
the same as for \fBpcre_exec()\fP, so their description is not repeated here. |
| 1825 |
.sp |
.sp |
| 1836 |
PCRE_DFA_SHORTEST |
PCRE_DFA_SHORTEST |
| 1837 |
.sp |
.sp |
| 1838 |
Setting the PCRE_DFA_SHORTEST option causes the matching algorithm to stop as |
Setting the PCRE_DFA_SHORTEST option causes the matching algorithm to stop as |
| 1839 |
soon as it has found one match. Because of the way the DFA algorithm works, |
soon as it has found one match. Because of the way the alternative algorithm |
| 1840 |
this is necessarily the shortest possible match at the first possible matching |
works, this is necessarily the shortest possible match at the first possible |
| 1841 |
point in the subject string. |
matching point in the subject string. |
| 1842 |
.sp |
.sp |
| 1843 |
PCRE_DFA_RESTART |
PCRE_DFA_RESTART |
| 1844 |
.sp |
.sp |
| 1877 |
On success, the yield of the function is a number greater than zero, which is |
On success, the yield of the function is a number greater than zero, which is |
| 1878 |
the number of matched substrings. The substrings themselves are returned in |
the number of matched substrings. The substrings themselves are returned in |
| 1879 |
\fIovector\fP. Each string uses two elements; the first is the offset to the |
\fIovector\fP. Each string uses two elements; the first is the offset to the |
| 1880 |
start, and the second is the offset to the end. All the strings have the same |
start, and the second is the offset to the end. In fact, all the strings have |
| 1881 |
start offset. (Space could have been saved by giving this only once, but it was |
the same start offset. (Space could have been saved by giving this only once, |
| 1882 |
decided to retain some compatibility with the way \fBpcre_exec()\fP returns |
but it was decided to retain some compatibility with the way \fBpcre_exec()\fP |
| 1883 |
data, even though the meaning of the strings is different.) |
returns data, even though the meaning of the strings is different.) |
| 1884 |
.P |
.P |
| 1885 |
The strings are returned in reverse order of length; that is, the longest |
The strings are returned in reverse order of length; that is, the longest |
| 1886 |
matching string is given first. If there were too many matches to fit into |
matching string is given first. If there were too many matches to fit into |
| 1907 |
.sp |
.sp |
| 1908 |
PCRE_ERROR_DFA_UCOND (-17) |
PCRE_ERROR_DFA_UCOND (-17) |
| 1909 |
.sp |
.sp |
| 1910 |
This return is given if \fBpcre_dfa_exec()\fP encounters a condition item in a |
This return is given if \fBpcre_dfa_exec()\fP encounters a condition item that |
| 1911 |
pattern that uses a back reference for the condition. This is not supported. |
uses a back reference for the condition, or a test for recursion in a specific |
| 1912 |
|
group. These are not supported. |
| 1913 |
.sp |
.sp |
| 1914 |
PCRE_ERROR_DFA_UMLIMIT (-18) |
PCRE_ERROR_DFA_UMLIMIT (-18) |
| 1915 |
.sp |
.sp |
| 1928 |
recursively, using private vectors for \fIovector\fP and \fIworkspace\fP. This |
recursively, using private vectors for \fIovector\fP and \fIworkspace\fP. This |
| 1929 |
error is given if the output vector is not large enough. This should be |
error is given if the output vector is not large enough. This should be |
| 1930 |
extremely rare, as a vector of size 1000 is used. |
extremely rare, as a vector of size 1000 is used. |
| 1931 |
.P |
. |
| 1932 |
.in 0 |
. |
| 1933 |
Last updated: 16 May 2005 |
.SH "SEE ALSO" |
| 1934 |
.br |
.rs |
| 1935 |
Copyright (c) 1997-2005 University of Cambridge. |
.sp |
| 1936 |
|
\fBpcrebuild\fP(3), \fBpcrecallout\fP(3), \fBpcrecpp(3)\fP(3), |
| 1937 |
|
\fBpcrematching\fP(3), \fBpcrepartial\fP(3), \fBpcreposix\fP(3), |
| 1938 |
|
\fBpcreprecompile\fP(3), \fBpcresample\fP(3), \fBpcrestack\fP(3). |
| 1939 |
|
. |
| 1940 |
|
. |
| 1941 |
|
.SH AUTHOR |
| 1942 |
|
.rs |
| 1943 |
|
.sp |
| 1944 |
|
.nf |
| 1945 |
|
Philip Hazel |
| 1946 |
|
University Computing Service |
| 1947 |
|
Cambridge CB2 3QH, England. |
| 1948 |
|
.fi |
| 1949 |
|
. |
| 1950 |
|
. |
| 1951 |
|
.SH REVISION |
| 1952 |
|
.rs |
| 1953 |
|
.sp |
| 1954 |
|
.nf |
| 1955 |
|
Last updated: 11 September 2007 |
| 1956 |
|
Copyright (c) 1997-2007 University of Cambridge. |
| 1957 |
|
.fi |