1PCRE_EXEC(3)               Library Functions Manual               PCRE_EXEC(3)
2
3
4

NAME

6       PCRE - Perl-compatible regular expressions
7

SYNOPSIS

9
10       #include <pcre.h>
11
12       int pcre_exec(const pcre *code, const pcre_extra *extra,
13            const char *subject, int length, int startoffset,
14            int options, int *ovector, int ovecsize);
15
16       int pcre16_exec(const pcre16 *code, const pcre16_extra *extra,
17            PCRE_SPTR16 subject, int length, int startoffset,
18            int options, int *ovector, int ovecsize);
19
20       int pcre32_exec(const pcre32 *code, const pcre32_extra *extra,
21            PCRE_SPTR32 subject, int length, int startoffset,
22            int options, int *ovector, int ovecsize);
23

DESCRIPTION

25
26       This  function  matches  a  compiled regular expression against a given
27       subject string, using a matching algorithm that is similar  to  Perl's.
28       It returns offsets to captured substrings. Its arguments are:
29
30         code         Points to the compiled pattern
31         extra        Points to an associated pcre[16|32]_extra structure,
32                        or is NULL
33         subject      Points to the subject string
34         length       Length of the subject string
35         startoffset  Offset in the subject at which to start matching
36         options      Option bits
37         ovector      Points to a vector of ints for result offsets
38         ovecsize     Number of elements in the vector (a multiple of 3)
39
40       The  units for length and startoffset are bytes for pcre_exec(), 16-bit
41       data items for pcre16_exec(), and 32-bit items for  pcre32_exec().  The
42       options are:
43
44         PCRE_ANCHORED          Match only at the first position
45         PCRE_BSR_ANYCRLF       \R matches only CR, LF, or CRLF
46         PCRE_BSR_UNICODE       \R matches all Unicode line endings
47         PCRE_NEWLINE_ANY       Recognize any Unicode newline sequence
48         PCRE_NEWLINE_ANYCRLF   Recognize CR, LF, & CRLF as newline sequences
49         PCRE_NEWLINE_CR        Recognize CR as the only newline sequence
50         PCRE_NEWLINE_CRLF      Recognize CRLF as the only newline sequence
51         PCRE_NEWLINE_LF        Recognize LF as the only newline sequence
52         PCRE_NOTBOL            Subject string is not the beginning of a line
53         PCRE_NOTEOL            Subject string is not the end of a line
54         PCRE_NOTEMPTY          An empty string is not a valid match
55         PCRE_NOTEMPTY_ATSTART  An empty string at the start of the subject
56                                  is not a valid match
57         PCRE_NO_START_OPTIMIZE Do not do "start-match" optimizations
58         PCRE_NO_UTF16_CHECK    Do not check the subject for UTF-16
59                                  validity (only relevant if PCRE_UTF16
60                                  was set at compile time)
61         PCRE_NO_UTF32_CHECK    Do not check the subject for UTF-32
62                                  validity (only relevant if PCRE_UTF32
63                                  was set at compile time)
64         PCRE_NO_UTF8_CHECK     Do not check the subject for UTF-8
65                                  validity (only relevant if PCRE_UTF8
66                                  was set at compile time)
67         PCRE_PARTIAL           ) Return PCRE_ERROR_PARTIAL for a partial
68         PCRE_PARTIAL_SOFT      )   match if no full matches are found
69         PCRE_PARTIAL_HARD      Return PCRE_ERROR_PARTIAL for a partial match
70                                  if that is found before a full match
71
72       For details of partial matching, see the pcrepartial page. A pcre_extra
73       structure contains the following fields:
74
75         flags            Bits indicating which fields are set
76         study_data       Opaque data from pcre[16|32]_study()
77         match_limit      Limit on internal resource use
78         match_limit_recursion  Limit on internal recursion depth
79         callout_data     Opaque data passed back to callouts
80         tables           Points to character tables or is NULL
81         mark             For passing back a *MARK pointer
82         executable_jit   Opaque data from JIT compilation
83
84       The  flag  bits  are   PCRE_EXTRA_STUDY_DATA,   PCRE_EXTRA_MATCH_LIMIT,
85       PCRE_EXTRA_MATCH_LIMIT_RECURSION,              PCRE_EXTRA_CALLOUT_DATA,
86       PCRE_EXTRA_TABLES, PCRE_EXTRA_MARK and PCRE_EXTRA_EXECUTABLE_JIT.
87
88       There is a complete description of the PCRE native API in  the  pcreapi
89       page and a description of the POSIX API in the pcreposix page.
90
91
92
93PCRE 8.33                         12 May 2013                     PCRE_EXEC(3)
Impressum