| 1 |
nigel |
79 |
.TH PCRE_COMPILE 3 |
| 2 |
nigel |
63 |
.SH NAME |
| 3 |
|
|
PCRE - Perl-compatible regular expressions |
| 4 |
|
|
.SH SYNOPSIS |
| 5 |
|
|
.rs |
| 6 |
|
|
.sp |
| 7 |
|
|
.B #include <pcre.h> |
| 8 |
|
|
.PP |
| 9 |
|
|
.SM |
| 10 |
|
|
.br |
| 11 |
nigel |
75 |
.B pcre *pcre_compile(const char *\fIpattern\fP, int \fIoptions\fP, |
| 12 |
nigel |
63 |
.ti +5n |
| 13 |
nigel |
75 |
.B const char **\fIerrptr\fP, int *\fIerroffset\fP, |
| 14 |
nigel |
63 |
.ti +5n |
| 15 |
nigel |
75 |
.B const unsigned char *\fItableptr\fP); |
| 16 |
|
|
. |
| 17 |
nigel |
63 |
.SH DESCRIPTION |
| 18 |
|
|
.rs |
| 19 |
|
|
.sp |
| 20 |
|
|
This function compiles a regular expression into an internal form. Its |
| 21 |
|
|
arguments are: |
| 22 |
nigel |
75 |
.sp |
| 23 |
nigel |
63 |
\fIpattern\fR A zero-terminated string containing the |
| 24 |
|
|
regular expression to be compiled |
| 25 |
|
|
\fIoptions\fR Zero or more option bits |
| 26 |
|
|
\fIerrptr\fR Where to put an error message |
| 27 |
|
|
\fIerroffset\fR Offset in pattern where error was found |
| 28 |
|
|
\fItableptr\fR Pointer to character tables, or NULL to |
| 29 |
|
|
use the built-in default |
| 30 |
nigel |
75 |
.sp |
| 31 |
nigel |
63 |
The option bits are: |
| 32 |
nigel |
75 |
.sp |
| 33 |
nigel |
63 |
PCRE_ANCHORED Force pattern anchoring |
| 34 |
nigel |
75 |
PCRE_AUTO_CALLOUT Compile automatic callouts |
| 35 |
nigel |
63 |
PCRE_CASELESS Do caseless matching |
| 36 |
|
|
PCRE_DOLLAR_ENDONLY $ not to match newline at end |
| 37 |
|
|
PCRE_DOTALL . matches anything including NL |
| 38 |
nigel |
91 |
PCRE_DUPNAMES Allow duplicate names for subpatterns |
| 39 |
nigel |
63 |
PCRE_EXTENDED Ignore whitespace and # comments |
| 40 |
|
|
PCRE_EXTRA PCRE extra features |
| 41 |
|
|
(not much use currently) |
| 42 |
nigel |
77 |
PCRE_FIRSTLINE Force matching to be before newline |
| 43 |
nigel |
63 |
PCRE_MULTILINE ^ and $ match newlines within data |
| 44 |
nigel |
91 |
PCRE_NEWLINE_CR Set CR as the newline sequence |
| 45 |
|
|
PCRE_NEWLINE_CRLF Set CRLF as the newline sequence |
| 46 |
|
|
PCRE_NEWLINE_LF Set LF as the newline sequence |
| 47 |
nigel |
63 |
PCRE_NO_AUTO_CAPTURE Disable numbered capturing paren- |
| 48 |
|
|
theses (named ones available) |
| 49 |
|
|
PCRE_UNGREEDY Invert greediness of quantifiers |
| 50 |
|
|
PCRE_UTF8 Run in UTF-8 mode |
| 51 |
nigel |
71 |
PCRE_NO_UTF8_CHECK Do not check the pattern for UTF-8 |
| 52 |
|
|
validity (only relevant if |
| 53 |
|
|
PCRE_UTF8 is set) |
| 54 |
nigel |
75 |
.sp |
| 55 |
|
|
PCRE must be built with UTF-8 support in order to use PCRE_UTF8 and |
| 56 |
|
|
PCRE_NO_UTF8_CHECK. |
| 57 |
|
|
.P |
| 58 |
nigel |
63 |
The yield of the function is a pointer to a private data structure that |
| 59 |
|
|
contains the compiled pattern, or NULL if an error was detected. |
| 60 |
nigel |
75 |
.P |
| 61 |
|
|
There is a complete description of the PCRE native API in the |
| 62 |
nigel |
63 |
.\" HREF |
| 63 |
|
|
\fBpcreapi\fR |
| 64 |
|
|
.\" |
| 65 |
nigel |
75 |
page and a description of the POSIX API in the |
| 66 |
|
|
.\" HREF |
| 67 |
|
|
\fBpcreposix\fR |
| 68 |
|
|
.\" |
| 69 |
nigel |
63 |
page. |