Annotation of embedaddon/pcre/doc/pcre_copy_substring.3, revision 1.1.1.5

1.1.1.4   misho       1: .TH PCRE_COPY_SUBSTRING 3 "24 June 2012" "PCRE 8.30"
1.1       misho       2: .SH NAME
                      3: PCRE - Perl-compatible regular expressions
                      4: .SH SYNOPSIS
                      5: .rs
                      6: .sp
                      7: .B #include <pcre.h>
                      8: .PP
1.1.1.5 ! misho       9: .nf
1.1       misho      10: .B int pcre_copy_substring(const char *\fIsubject\fP, int *\fIovector\fP,
1.1.1.5 ! misho      11: .B "     int \fIstringcount\fP, int \fIstringnumber\fP, char *\fIbuffer\fP,"
        !            12: .B "     int \fIbuffersize\fP);"
        !            13: .sp
1.1.1.2   misho      14: .B int pcre16_copy_substring(PCRE_SPTR16 \fIsubject\fP, int *\fIovector\fP,
1.1.1.5 ! misho      15: .B "     int \fIstringcount\fP, int \fIstringnumber\fP, PCRE_UCHAR16 *\fIbuffer\fP,"
        !            16: .B "     int \fIbuffersize\fP);"
        !            17: .sp
1.1.1.4   misho      18: .B int pcre32_copy_substring(PCRE_SPTR32 \fIsubject\fP, int *\fIovector\fP,
1.1.1.5 ! misho      19: .B "     int \fIstringcount\fP, int \fIstringnumber\fP, PCRE_UCHAR32 *\fIbuffer\fP,"
        !            20: .B "     int \fIbuffersize\fP);"
        !            21: .fi
1.1       misho      22: .
                     23: .SH DESCRIPTION
                     24: .rs
                     25: .sp
                     26: This is a convenience function for extracting a captured substring into a given
                     27: buffer. The arguments are:
                     28: .sp
                     29:   \fIsubject\fP       Subject that has been successfully matched
1.1.1.4   misho      30:   \fIovector\fP       Offset vector that \fBpcre[16|32]_exec()\fP used
                     31:   \fIstringcount\fP   Value returned by \fBpcre[16|32]_exec()\fP
1.1       misho      32:   \fIstringnumber\fP  Number of the required substring
                     33:   \fIbuffer\fP        Buffer to receive the string
                     34:   \fIbuffersize\fP    Size of buffer
                     35: .sp
                     36: The yield is the length of the string, PCRE_ERROR_NOMEMORY if the buffer was
                     37: too small, or PCRE_ERROR_NOSUBSTRING if the string number is invalid.
                     38: .P
                     39: There is a complete description of the PCRE native API in the
                     40: .\" HREF
                     41: \fBpcreapi\fP
                     42: .\"
                     43: page and a description of the POSIX API in the
                     44: .\" HREF
                     45: \fBpcreposix\fP
                     46: .\"
                     47: page.

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>