/[pcre]/code/trunk/doc/pcre_compile.3
ViewVC logotype

Contents of /code/trunk/doc/pcre_compile.3

Parent Directory Parent Directory | Revision Log Revision Log


Revision 99 - (hide annotations) (download)
Tue Mar 6 12:27:42 2007 UTC (6 years, 3 months ago) by ph10
File size: 2515 byte(s)
1. Move the comment about version numbers from pcre.h.in to configure.ac 
because that's where they are now set.
2. Update all the man pages to remove the use of .br and .in because this
causes trouble for some HTML converters. Also standardised the final sections 
giving author information and revision date.
3. Update the maintain/132html man page converter to handle .nf/.fi and to barf 
at .br/.in.

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 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     .
16 nigel 63 .SH DESCRIPTION
17     .rs
18     .sp
19 nigel 93 This function compiles a regular expression into an internal form. It is the
20     same as \fBpcre_compile2()\fP, except for the absence of the \fIerrorcodeptr\fP
21     argument. Its 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 93 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
45 nigel 91 PCRE_NEWLINE_CR Set CR as the newline sequence
46     PCRE_NEWLINE_CRLF Set CRLF as the newline sequence
47     PCRE_NEWLINE_LF Set LF as the newline sequence
48 nigel 63 PCRE_NO_AUTO_CAPTURE Disable numbered capturing paren-
49     theses (named ones available)
50     PCRE_UNGREEDY Invert greediness of quantifiers
51     PCRE_UTF8 Run in UTF-8 mode
52 nigel 71 PCRE_NO_UTF8_CHECK Do not check the pattern for UTF-8
53     validity (only relevant if
54     PCRE_UTF8 is set)
55 nigel 75 .sp
56     PCRE must be built with UTF-8 support in order to use PCRE_UTF8 and
57     PCRE_NO_UTF8_CHECK.
58     .P
59 nigel 63 The yield of the function is a pointer to a private data structure that
60     contains the compiled pattern, or NULL if an error was detected.
61 nigel 75 .P
62     There is a complete description of the PCRE native API in the
63 nigel 63 .\" HREF
64     \fBpcreapi\fR
65     .\"
66 nigel 75 page and a description of the POSIX API in the
67     .\" HREF
68     \fBpcreposix\fR
69     .\"
70 nigel 63 page.

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12