1 |
.TH PCRE 3 |
.TH PCRE_GET_STRINGNUMBER 3 |
2 |
.SH NAME |
.SH NAME |
3 |
PCRE - Perl-compatible regular expressions |
PCRE - Perl-compatible regular expressions |
4 |
.SH SYNOPSIS |
.SH SYNOPSIS |
8 |
.PP |
.PP |
9 |
.SM |
.SM |
10 |
.br |
.br |
11 |
.B int pcre_get_stringnumber(const pcre *\fIcode\fR, |
.B int pcre_get_stringnumber(const pcre *\fIcode\fP, |
12 |
.ti +5n |
.ti +5n |
13 |
.B const char *\fIname\fR); |
.B const char *\fIname\fP); |
14 |
|
. |
15 |
.SH DESCRIPTION |
.SH DESCRIPTION |
16 |
.rs |
.rs |
17 |
.sp |
.sp |
18 |
This convenience function finds the number of a named substring capturing |
This convenience function finds the number of a named substring capturing |
19 |
parenthesis in a compiled pattern. Its arguments are: |
parenthesis in a compiled pattern. Its arguments are: |
20 |
|
.sp |
21 |
\fIcode\fR Compiled regular expression |
\fIcode\fP Compiled regular expression |
22 |
\fIname\fR Name whose number is required |
\fIname\fP Name whose number is required |
23 |
|
.sp |
24 |
The yield of the function is the number of the parenthesis if the name is |
The yield of the function is the number of the parenthesis if the name is |
25 |
found, or PCRE_ERROR_NOSUBSTRING otherwise. |
found, or PCRE_ERROR_NOSUBSTRING otherwise. When duplicate names are allowed |
26 |
|
(PCRE_DUPNAMES is set), it is not defined which of the numbers is returned by |
27 |
There is a complete description of the PCRE API in the |
\fBpcre_get_stringnumber()\fP. You can obtain the complete list by calling |
28 |
|
\fBpcre_get_stringtable_entries()\fP. |
29 |
|
.P |
30 |
|
There is a complete description of the PCRE native API in the |
31 |
|
.\" HREF |
32 |
|
\fBpcreapi\fP |
33 |
|
.\" |
34 |
|
page and a description of the POSIX API in the |
35 |
.\" HREF |
.\" HREF |
36 |
\fBpcreapi\fR |
\fBpcreposix\fP |
37 |
.\" |
.\" |
38 |
page. |
page. |