blob: 51b6a0493e3ce26a7934e8c5ab56f7f77757132f [file] [log] [blame]
Janis Danisevskis112c9cc2016-03-31 13:35:25 +01001.TH PCRE2_SUBSTRING_GET_BYNUMBER 3 "13 December 2014" "PCRE2 10.00"
2.SH NAME
3PCRE2 - 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
17This is a convenience function for extracting a captured substring by number
18into 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
25The memory in which the substring is placed is obtained by calling the same
26memory allocation function that was used for the match data block. The
27convenience function \fBpcre2_substring_free()\fP can be used to free it when
28it is no longer needed. The yield of the function is zero for success or one of
29the 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
37There is a complete description of the PCRE2 native API in the
38.\" HREF
39\fBpcre2api\fP
40.\"
41page and a description of the POSIX API in the
42.\" HREF
43\fBpcre2posix\fP
44.\"
45page.