table of contents
PCRE_GET_NAMED_SUBSTRING(3) | Library Functions Manual | PCRE_GET_NAMED_SUBSTRING(3) |
NAME¶
PCRE - Perl-compatible regular expressionsSYNOPSIS¶
#include <pcre.h> int pcre_get_named_substring(const pcre *code, const char *subject, int * ovector, int stringcount, const char * stringname, const char **stringptr); int pcre16_get_named_substring(const pcre16 *code, PCRE_SPTR16 subject, int *ovector, int stringcount, PCRE_SPTR16 stringname, PCRE_SPTR16 *stringptr);DESCRIPTION¶
This is a convenience function for extracting a captured substring by name. The arguments are:code Compiled pattern
subject Subject that has been successfully matched
ovector Offset vector that pcre[16]_exec() used
stringcount Value returned by pcre[16]_exec()
stringname Name of the required substring
stringptr Where to put the string pointer