new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / external / pcre2-10.32 / doc / pcre2_substring_get_bynumber.3
1 .TH PCRE2_SUBSTRING_GET_BYNUMBER 3 "13 December 2014" "PCRE2 10.00"
2 .SH NAME
3 PCRE2 - Perl-compatible regular expressions (revised API)
4 .SH SYNOPSIS
5 .rs
6 .sp
7 .B #include <pcre2.h>
8 .PP
9 .nf
10 .B int pcre2_substring_get_bynumber(pcre2_match_data *\fImatch_data\fP,
11 .B "  uint32_t \fInumber\fP, PCRE2_UCHAR **\fIbufferptr\fP, PCRE2_SIZE *\fIbufflen\fP);"
12 .fi
13 .
14 .SH DESCRIPTION
15 .rs
16 .sp
17 This is a convenience function for extracting a captured substring by number
18 into newly acquired memory. The arguments are:
19 .sp
20   \fImatch_data\fP    The match data for the match
21   \fInumber\fP        Number of the required substring
22   \fIbufferptr\fP     Where to put the string pointer
23   \fIbufflen\fP       Where to put the string length
24 .sp
25 The memory in which the substring is placed is obtained by calling the same
26 memory allocation function that was used for the match data block. The
27 convenience function \fBpcre2_substring_free()\fP can be used to free it when
28 it is no longer needed. The yield of the function is zero for success or one of
29 the following error numbers:
30 .sp
31   PCRE2_ERROR_NOSUBSTRING   there are no groups of that number
32   PCRE2_ERROR_UNAVAILBLE    the ovector was too small for that group
33   PCRE2_ERROR_UNSET         the group did not participate in the match
34   PCRE2_ERROR_NOMEMORY      memory could not be obtained
35 .sp
36 .P
37 There is a complete description of the PCRE2 native API in the
38 .\" HREF
39 \fBpcre2api\fP
40 .\"
41 page and a description of the POSIX API in the
42 .\" HREF
43 \fBpcre2posix\fP
44 .\"
45 page.